Oracle DB Help Needed! | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Oracle DB Help Needed!

I am developing a massive tracking system at work and while it was small we have been using Access, now that it is getting bigger we are migrating to Oracle(I know MySQL would be a much better option but it is all I have available to me) The application is built on NodeJS as an electron app so it will be distributable and must be installed on the users machine. that being said I am not familiar with Oracle DB connections and required drivers. Any help setting up the client application with all resources needed for an Oracle connection would be much appreciated.

13th Sep 2018, 2:42 PM
Brandon
Brandon - avatar
5 Answers
0
Download JDBC or ODBC drivers for your client program and apply them
13th Sep 2018, 3:06 PM
SQL Guy
0
So I will need to find out where the library im using which in this case is node-oracledb is looking for the driver. Will I need a 2015 Visual Studio distributable for windows platforms? And if so , im assuming I would include that in the program directory as well right?
13th Sep 2018, 4:21 PM
Brandon
Brandon - avatar
0
Yeah, see if there is a JDBC or ODBC driver for Visual Studio and include it in the program directory. Actually you can work with Oracle Database itself, too. You can download Oracle Database 18 client to connect with your server. If you work for a company I assume that they have physical servers. Otherwise you can create virtual servers.
13th Sep 2018, 6:48 PM
SQL Guy
0
Instant Client is exactly what I was looking for. Ill give that a go. Thank you so much for the help.
13th Sep 2018, 7:48 PM
Brandon
Brandon - avatar