On 1 Mar 2018, at 7:42pm, Matías Badin <[email protected]> wrote:
> The string is over 55000 characters and i'm using SQLiteCommand in C# Since that's less than a million, whatever limit you're hitting isn't part of SQLite, it's part of one of 1) Operating System 2) SQLite shim library 3) Programming language My guess is that it's a limitation of SQLiteCommand a.k.a Microsoft.Data.Sqlite . You might want to ask about the problem in a forum on C#, .NET or Microsoft.Data.* . "Request too long" is actually HTTP error 400. If some part of your system is passing the commands over HTTP, then this may be what's causing the problem. Maximum lengths are usually something like 16,000 or 20,000 characters. Simon. _______________________________________________ sqlite-users mailing list [email protected] http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

