Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 VBA 中使用 ADODB 向我的 MySQL 服务器发送请求。
conn.Open conn.Execute Command conn.Close
它适用于小请求,但是当 Command 的大小大于 255 个字符时,它会被截断为前 255 个字符。
有某种限制吗?有没有办法扩展它?
有没有更有效的方式向 MySQL 发送大型查询?
使用 MySQL ODBC 驱动程序 5.1.11 我已经向 MySQL 发送了几个长度超过 1024 字节的命令,没有任何问题。您正在运行什么版本的 ADODB,您将“命令”变量定义为什么?