Azzera filtri
Azzera filtri

Why does a Oracle-DB-Connection can not be established with Matlab 2018?

4 visualizzazioni (ultimi 30 giorni)
My function establishes a connection with an oracle database. Executing the following function (sorry, critical variables are defined with * here) with Matlab 2017a a connection can be established. The connection can not be established with Matlab 2018a. Can somebody help me out?
%%Vers. 2017/18
% DB settings
DB = '***';
user = '***';
password = '***';
vendor = 'Oracle';
dbConnStr = ['jdbc:oracle:thin:@(DESCRIPTION=' ...
'(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=***)' ...
'(PORT=1521))(ADDRESS=(PROTOCOL=TCP)' ...
'(HOST=***)(PORT=1521)))'...
'(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=ORCP)'...
'(INSTANCE_NAME=MULTITGP)))'];
%%In case add jdbcDriver
jdbcDriverPath = fullfile('jdbc_driver','ojdbc6.jar'); % jdbc_driver is a folder in pwd with ojdbc6.jar in it
if ~ismember(fullfile(matlabroot,'java','jar',jdbcDriverPath),...
javaclasspath('-static'))... % static
&& ~ismember(fullfile(pwd,jdbcDriverPath),...
javaclasspath('-dynamic')) % dynamic
javaaddpath(jdbcDriverPath);
end
%%Establish connection
conn = database(DB,user,password,...
'Vendor',vendor,...
'URL',dbConnStr);
%%Connection check
if isopen(conn)
msgbox('Connection OK');
close(conn);
else
msgbox('Connection FAIL')
end
  1 Commento
Sharannya Ranjith
Sharannya Ranjith il 11 Mag 2018
Can you please verify that the "databasename" field refers to the the instance name of your database and not the schema name?
Also ensure that you have added the full path of the JDBC driver to the classpath.txt file and verify the server name and port number for your Oracle database.

Accedi per commentare.

Risposte (1)

Arpan Badeka
Arpan Badeka il 22 Giu 2018
Modificato: Arpan Badeka il 29 Ago 2018
Hi Thomas
The connection command used to setup the connection doesn’t seem to be correct. Please user either of the following commands to setup the connection:
1.
datasource = 'dbname';
username = 'username';
password = 'pwd';
driver = 'oracle.jdbc.driver.OracleDriver';
url = 'jdbc:oracle:thin://host:port/dbname';
conn = database(datasource,username,password,driver,url)
2.
datasource = 'toy_store';
conn = database(datasource,username,password,'Vendor','ORACLE', ...
'Server','dbtbxx','PortNumber',1521, ...
'DriverType','thin')
The command you are using seems to be a mix of the two syntax we currently support. Please try any of the above syntax to setup connection.
Thanks,
Arpan Badeka

Categorie

Scopri di più su Reporting and Database Access in Help Center e File Exchange

Prodotti


Release

R2018a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by