Matlab - 连接到localhost时没有合适的驱动程序

时间:2018-01-16 00:37:12

标签: postgresql matlab jdbc

我正在尝试使用Matlab R2015a连接到localhost设置PostgreSQL 10,并且在遵循instructions和连接字符串布局之后,我不知道为什么我仍然得到一个"找不到合适的司机"错误。

datasource = 'toronto';
username = 'postgres';
password = '********';
driver = 'org.postgresql.Driver';
server = 'jdbc:postresql://localhost:5432/';

connection = database(datasource, username, password, driver, server)

我已经检查了related SO thread,但没有骰子。这里有一些额外的信息,希望有人之前已经遇到过这个问题。

  • PostgreSQL 10.1,构建1800 64位
  • Java Version 8,内置1.8.0_91-b14
  • PostgreSQL JDBC 4.2驱动程序,42.1.4

0 个答案:

没有答案