We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Node: Node.js 10.23.2 (ia32) System: Windows 10 Pro 64-bit SQL Anywhere: 17.0.10.5963 32-bit
With the following connection code
const connParams = { UserId: "dba", Password: "sql", dsn: "abc" } conn.connect( connParams, (error: any) => { console.log(error); } );
I get this error: [Error: Code: -103 Msg: Invalid user ID or password].
[Error: Code: -103 Msg: Invalid user ID or password]
However, when I run dbisql -c "userid=dba;password=sql;dsn=abc", it works perfectly, no issues.
dbisql -c "userid=dba;password=sql;dsn=abc"
I've tried the following:
"userid=dba;password=sql;dsn=abc"
The text was updated successfully, but these errors were encountered:
Hi Joe, I opened issue number 266170 and we plan to look into it. https://sqlanywhere-forum.sap.com/ also hosts an active SQLA community. Dan
Sorry, something went wrong.
No branches or pull requests
Node: Node.js 10.23.2 (ia32)
System: Windows 10 Pro 64-bit
SQL Anywhere: 17.0.10.5963 32-bit
With the following connection code
I get this error:
[Error: Code: -103 Msg: Invalid user ID or password]
.However, when I run
dbisql -c "userid=dba;password=sql;dsn=abc"
, it works perfectly, no issues.I've tried the following:
"userid=dba;password=sql;dsn=abc"
directly instead of the params objectThe text was updated successfully, but these errors were encountered: