-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
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-oracledb 6.0 with a 'Thin' mode has been released! #1552
Comments
good day! |
@kuanysh-baltagarayev What is your Oracle Database version? |
Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production |
@kuanysh-baltagarayev node-oracledb 6.0 Thin mode supports Oracle Database Release 12.1 and later. Please see the following documentation: https://node-oracledb.readthedocs.io/en/latest/user_guide/appendix_a.html#id1 for the supported releases. Node-oracledb 6.0 is a 'Thin mode' driver by default. You can switch to Thick mode for Oracle Database 11g support or upgrade your database version |
thank you!!! |
how about oracle 10g sir? |
@Fariededuction Oracle Database 10g can be used with node-oracledb 6.0 Thick mode and the right Oracle Client Libraries. Thin mode does not support Oracle Database 10g. |
wow its really work sir, thank you!! |
Hello @sharadraju I want to connect to Oracle database in Thin mode. But in typeorm i am not aware how can i do this. Can you please guide me for that. Thanks in advance. |
@nilaytupelolife There was a bug related to the running of typeorm tests with node-oracledb 6.0, which was fixed in 6.1. |
@sharadraju Thank youfor you reply. I figure out and it is working fine. But when i do npm install it is not working i need to do -force to install packages. Can you please guide me on this> |
@nilaytupelolife The latest version of node-oracledb is 6.2, which was released last week. |
@sharadraju I did that. But now i feel, issue is because typeorm has 5.1.4 set in their peer dependencies thats why it is giving error. Can you help in that as well? |
@nilaytupelolife You might want to follow the TypeORM PR: typeorm/typeorm#10285 |
@sharadraju Thank you very much for your support. will check it in typeorm repository. |
@sharadraju I am facing listner issue when i try to connect oracle cloud db using Oracle db 6.2.0. Can you please help? I am using wallet approch earlier with 5.5.0. |
@nilaytupelolife Can you send the exact error that you are facing? |
I am usign mTLS. |
@nilaytupelolife
This is documented here |
I am trying g to upgrade the version from 5.5.0 to 6.0.0 or 6.5.1 major version. I get an error while creating pool - NJS-516 no configuration directory set or available to search for tnsnames.ora. |
@karkan20 please open new issues for new problems. But before doing that that, review this: https://node-oracledb.readthedocs.io/en/latest/user_guide/initialization.html#using-optional-oracle-configuration-files and note the differences between Thin mode (the new default) and Thick mode (the equivalent of what you had in 5.5) |
Hello All, the node-oracledb 6.0.0 release is out!
This version of node-oracledb is now a ‘Thin’ mode driver by default. The Thin mode is implemented purely in JavaScript and connects directly to Oracle Database. It removes the need to download Oracle client libraries to connect to Oracle Database.
You can also enable a ‘Thick’ mode that will allow the optional use of Oracle client libraries with some additional functionality. This mode will include all the features of the previous node-oracledb release, along with the other enhancements.
Check out our release blog for all the deets:
https://medium.com/@sharad-chandran/usher-in-a-new-era-with-the-node-oracledb-6-0-pure-javascript-thin-driver-e10e2af693b2
The text was updated successfully, but these errors were encountered: