我正在尝试使用 MVSP java api 连接到 D3 数据库。至今:
- 我已经下载了
mvapi.jar
- 将其添加到项目
lib
文件夹中 编写了connection inside
main
方法的示例代码String url = "jdbc:mv:d3:hostname:portNo"; Properties props = new Properties(); props.setProperty("username", ""); props.setProperty("password", ""); String account = "AGCO"; String password = ""; MVConnection connection = null; try { // Getting error at this point connection = new MVConnection(url,props); MVStatement mvStatement = connection.createStatement(); connection.logTo(account,password); MVResultSet results = mvStatement.executeQuery(query); }
com.tigr.mvapi.exceptions.MVException: server error with errorCode 1023.
我检查了控制台,但无法找出实际原因,或者我是否输入了错误的用户名、密码。
请提出我做错了什么。