本文介绍了我的SQL JDBC代码中的错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的sql jdbc代码有问题.代码中有错误,我不知道错误
代码如下
I have problem in my sql jdbc code .there is errorin code , I do not know the error
code is the following
try{String c;
String w= area.getText();
Class.forName("com.mysql.jdbc.Driver");
Connection mycon=null;
mycon=DriverManager.getConnection("jdbc:mysql://localhost:90/phpmyadmin/");
Statement statement=mycon.createStatement();
// JOptionPane.showMessageDialog(null, "alert", "alert", JOptionPane.ERROR_MESSAGE);
ResultSet rst=statement.executeQuery("insert into d.t "+ "values(1,'c',w )");
}
catch(SQLException exp)
{ }
catch(ClassNotFoundException e)
{}
查询不起作用,数据库的数据未更改
the query does not work and the data of my database is not changed
推荐答案
这篇关于我的SQL JDBC代码中的错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!