使用PreparedStatement避免输入错误的问题:
PreparedStatement p = c.prepare("INSERT INTO WORDS (ID,CAT,WORD) VALUES(?, ?, ?)");p.setInt(1, i);p.setString(2, wordcat);p.setString(3, word);p.execute();//commit results if using InnoDB, etc
欢迎分享,转载请注明来源:内存溢出
使用PreparedStatement避免输入错误的问题:
PreparedStatement p = c.prepare("INSERT INTO WORDS (ID,CAT,WORD) VALUES(?, ?, ?)");p.setInt(1, i);p.setString(2, wordcat);p.setString(3, word);p.execute();//commit results if using InnoDB, etc
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)