我们如果使用PreparedStatement批量写入一些数据用于我们的MySQL各种测试呢我们来看了方法1
public void test11(){
Connection conn=null;
PreparedStatement pstm=null;
ResultSet rs=null;
try{
conn=JDBCUtils.getConnection();
String sql="insert into goods (name) values(?)";
pstm=conn.prepareStatement(sql);
for(int i=35860;i<=