Error using database.jdbc.connection/select (line 74) Invalid connection.
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I can't connect to database using jdbc driver:
Error using database.jdbc.connection/select (line 74)
Invalid connection.
I tried to reinstall driver, updated javaclasspath but it doesn't work.
Is there any solution?
0 Commenti
Risposte (1)
Bob Hickish
il 18 Mag 2020
I'm not sure if we had the same issue, but I managed to resolve mine by using these three functions in this order:
opts = configureJDBCDataSource('Vendor','PostgreSQL')
opts = setConnectionOptions(opts,"DataSourceName","PostgreSQL",..)
conn = database(databasename,username,password,driver,url)
I then checked I was connected to the database with: isopen(conn)
0 Commenti
Vedere anche
Categorie
Scopri di più su Reporting and Database Access in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!