java servlet执行多条MySQL查询语句

在MySQL中执行多个语句,需要把allowMultiQueries参数置为true,而且,只有MySQL Connector/J 3.1.1以上版本才支持。

建立连接时设置一下就可以了,如:jdbc:mysql://127.0.0.1/sample?user=root&password=&allowMultiQueries=true

// 执行多条MySQL查询语句->customer表
		if(action.equals("multiselect")){
//			sql=new Formatter().format("delete from message where user_accept='%s'",user).toString();
			sql="insert into customer (user,password) VALUES ('test1','test1');" +
				"insert into customer (user,password) VALUES ('test2','test2')";
			result= mysqlUpdate(sql);
			echo(result);
		}


你可能感兴趣的:(java servlet执行多条MySQL查询语句)