还是JDBC中的 添加问题
public void zhuce()throws Exception{
Class.forName("com.mysql.jdbc.Driver");
Connection conn=DriverManager.getConnection("jdbc:mysql://localhost:3306/qq","root","a3635114");
Statement stmt=conn.createStatement();
stmt.executeUpdate("insert into qqmanager values('+user1.getText()'+'+password1.getText()')");
}
JDBC中增加数据的代码实现不了。
------解决方案--------------------"insert into qqmanager values('"+user1.getText()+"','"+password1.getText()+"')"