I am wondering is there some limitation on the length of the text I can give to CommandText
field ?
I am using MySqlConnection
and MySqlCommand
.
I am wondering is there some limitation on the length of the text I can give to CommandText
field ?
I am using MySqlConnection
and MySqlCommand
.
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?