Connecting to Oracle express
Afficher commentaires plus anciens
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 commentaires
Rodrigo
le 11 Juil 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
le 11 Juil 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
le 11 Juil 2014
Paul
le 11 Juil 2014
Rodrigo
le 11 Juil 2014
yes,
Creates an example table with sql developer populate and query it from Matlab.
Paul
le 11 Juil 2014
Paul
le 11 Juil 2014
Réponse acceptée
Plus de réponses (4)
Sruthi Ayloo
le 9 Juil 2014
0 votes
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
le 9 Juil 2014
0 votes
Paul
le 10 Juil 2014
Paul
le 11 Juil 2014
0 votes
Catégories
En savoir plus sur Database Toolbox dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
