You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am facing these two error
Error: Incompatible wire encryption levels requested on client and server at doCallback
Error2: Incompatible wire encryption levels requested on client and server
I am facing these two error
Error: Incompatible wire encryption levels requested on client and server at doCallback
Error2: Incompatible wire encryption levels requested on client and server
+++++++++++++ code review ++++++++++++++
const firebird = require('node-firebird');
const options = {
host: '127.0.0.1',
port: 3050,
database: 'C:/Users/khalid.d/Documents/MYDB.fdb',
user: 'SYSDBA',
password: 'root',
lowercase_keys: false,
pageSize: 4096,
role: null,
// charset: 'WIN1253',
// encrypt: 'AES256',
// algorithm: 'AES256',
};
exports.executeQuery = async (query, params = []) => {
return new Promise((resolve, reject) => {
firebird.attach(options, (err, db) => {
if (err) {
console.error('Error connecting to the Firebird database:', err);
reject(err);
return;
}
console.log('Connected to the Firebird database.');
});
};
The text was updated successfully, but these errors were encountered: