Saved searches

Use saved searches to filter your results more quickly

Cancel Create saved search Sign up Reseting focus

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.

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Incompatible wire encryption levels requested on client and server #214

kendi95 opened this issue Jul 8, 2020 · 4 comments

Incompatible wire encryption levels requested on client and server #214

kendi95 opened this issue Jul 8, 2020 · 4 comments

Comments

kendi95 commented Jul 8, 2020

Hi, i'm trying to connecting with my database with Express.
The version of Firebird is v3.0.6

`
//config
options.host = "127.0.0.1";
options.port = 3050;
options.database = "/tmp/firebird/.fdb";
options.user = "";
options.password = "";
options.lowercase_keys = false;
options.role = null;
options.pageSize = 4096;

//Trying to connect
Firebird.attach(options, (err, db) => if (err) throw err;

console.log('Connection successful. '); 

`
Why is it happeninig?

The text was updated successfully, but these errors were encountered: