当前位置: 技术问答>java相关
JDBC数据库编程,快来帮忙
来源: 互联网 发布时间:2015-09-16
本文导语: 我用 Microsoft access编了一个数据库作为JDBC的数据源,在ODBC中我设置源名为matieralDB, 下面是一部分代码: try{ 。。。。 String url="jdbc:odbc:matieralDB"; Connection cn=DriverManager.getConnection(url,"",""); String str="INSERT INTO m...
我用 Microsoft access编了一个数据库作为JDBC的数据源,在ODBC中我设置源名为matieralDB, 下面是一部分代码:
try{ 。。。。
String url="jdbc:odbc:matieralDB";
Connection cn=DriverManager.getConnection(url,"","");
String str="INSERT INTO matieralDB(mCode,mName,mbCode,meaUnit, resePlace,orderN,safeRese,orderB,bCode,pCode,preTime,proTime,testTime)-VALUES(?,?,?,?,?,?,?,?,?,?,?,?,?)";
PreparedStatement ps=cn.prepareStatement(str);
。。。。
}
catch(SQLException e)
{
....
new myDialog(this ,"program wrong"+e.getMessage(),this.location());
....
}
错误是:program wrong[Microsoft][ODBC Micosoft Access 驱动程序][不能打开数据库‘(未知的)’。应用程序可能无(下面是一些乱码)
各位高手请多帮忙
}
try{ 。。。。
String url="jdbc:odbc:matieralDB";
Connection cn=DriverManager.getConnection(url,"","");
String str="INSERT INTO matieralDB(mCode,mName,mbCode,meaUnit, resePlace,orderN,safeRese,orderB,bCode,pCode,preTime,proTime,testTime)-VALUES(?,?,?,?,?,?,?,?,?,?,?,?,?)";
PreparedStatement ps=cn.prepareStatement(str);
。。。。
}
catch(SQLException e)
{
....
new myDialog(this ,"program wrong"+e.getMessage(),this.location());
....
}
错误是:program wrong[Microsoft][ODBC Micosoft Access 驱动程序][不能打开数据库‘(未知的)’。应用程序可能无(下面是一些乱码)
各位高手请多帮忙
}
|
你的insert语句中testTime)-VALUES此处怎么多了个 - 符号??
~~~
~~~
|
new sun.jdbc.odbc.JdbcOdbcDriver();
String url="jdbc:odbc:matieralDB";
Connection cn=DriverManager.getConnection(url,"","");
String url="jdbc:odbc:matieralDB";
Connection cn=DriverManager.getConnection(url,"","");
|
装载驱动了吗?
try {
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
}
catch (ClassNotFoundException ex) {
}
try {
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
}
catch (ClassNotFoundException ex) {
}
|
那就是说你的插入语句有错误,你在检查一下