http://www.cppblog.com/fwxjj/archive/2010/08/05/122258.html
说是在连接上设置:
- //链接时设定
- mysql_real_connect( ..., CLIENT_MULTI_STATEMENTS );
- //或者
- //中途指定
- mysql_set_server_option( mysql, MYSQL_OPTION_MULTI_STATEMENTS_ON ); //mysql是连接的名称
但是C#的驱动,没有找到设置的地方。
搜遍源码也没有。
在 http://www.connectionstrings.com/mysql/ 查到可以在连接字符串中指定:AllowBatch,默认为True。
Server=127.0.0.1;Database=MyMvcApp;Uid=root;Pwd=root;Pooling=True;MinimumPoolSize=10;maximumpoolsize=500;ConnectionLifeTime=300;ProcedureCacheSize=0;default command timeout=20;Connection Timeout=5;CharSet=utf8;AllowBatch=True;
待测。
时间: 2024-10-12 19:02:24