Is there any limitations on length of the text in CommandText
I am wondering is there some limitation on the length of the text I can give to CommandText
field ?
I am using MySqlConnection
and MySqlComm开发者_运维知识库and
.
Check this link Mysql Dataprovider
Commandtext
property defined as
public string CommandText {get; set;}
So limitation is same as limitation of length of a string. Check this post for string length limitation What is the maximum possible length of a .NET string?
精彩评论