Connecting to Oracle express
Mostra commenti meno recenti
I am having troubles connecting to oracle express db. When i am trying to connect to the database i get the following error:
>> conn = database('test_db','','zxcv','Vendor','Oracle',...
'DriverType','oci','Server','remotehost','PortNumber',
1234)
Error using database (line 309)
Java exception occurred:
java.lang.UnsatisfiedLinkError: no ocijdbc11 in
java.library.path
10 Commenti
Rodrigo
il 11 Lug 2014
Paul try this:
conn = database('XE','SYSTEM','password','oracle.jdbc.driver.OracleDriver',jdbc:oracle:thin:@LOCALHOST:1521:XE');
password is the password when you install Oracle XE
RML!
Rodrigo
il 11 Lug 2014
I think that is a sintaxis error...
conn = database('XE','SYSTEM','password','oracle.jdbc.driver.OracleDriver',jdbc:oracle:thin:@localhost:1521:XE);
note now without de ' character at the end of XE
Paul
il 11 Lug 2014
Paul
il 11 Lug 2014
Rodrigo
il 11 Lug 2014
yes,
Creates an example table with sql developer populate and query it from Matlab.
Paul
il 11 Lug 2014
Paul
il 11 Lug 2014
Risposta accettata
Più risposte (4)
Sruthi Ayloo
il 9 Lug 2014
0 voti
The Oracle DLL that the Database drivers need could not be detected in MATLAB. Add the location of the Oracle DLLs path to the following file and restart MATLAB.
$MATLAB/toolbox/local/javalibrarypath.txt.
For more information, refer to Step 3 in http://www.mathworks.com/help/database/ug/oracle-jdbc-windows.html
Paul
il 9 Lug 2014
0 voti
Paul
il 10 Lug 2014
Paul
il 11 Lug 2014
0 voti
Categorie
Scopri di più su Database Toolbox in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
