使用
PreparedStatement。
String insert = "INSERT INTO `bookcatalog`.`puch` (`name`, `time`) VALUES (?,?)";PreparedStatement ps=connect.prepareStatement(insert);ps.setString(1,name);ps.setTimeStamp(2,TimeStamp.valueOf(currentTime));ps.executeUpdate();
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)