Re: [sqlite] String Too Long

2018-03-01 Thread Drago, William @ CSG - NARDA-MITEQ
> 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.* . Or try System.Data.SQLite instead of the Microsoft version. You can download it directly or use NuGet. -- Bill Drago

Re: [sqlite] String Too Long

2018-03-01 Thread Simon Slavin
On 1 Mar 2018, at 7:42pm, Matías Badin 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

Re: [sqlite] String Too Long

2018-03-01 Thread Richard Hipp
On 3/1/18, Matías Badin wrote: > The string is over 55000 characters and i'm using SQLiteCommand in C# That might be something in C#. SQLite can easily handle a 55K character string. It commonly does much more than that in applications such as Fossil. -- D. Richard

Re: [sqlite] String Too Long

2018-03-01 Thread Matías Badin
lto:sqlite-users-boun...@mailinglists.sqlite.org] > On Behalf Of Matías Badin > Sent: Thursday, March 01, 2018 2:38 PM > To: SQLite mailing list > Subject: Re: [sqlite] String Too Long > > Yes, i am binding the string. > > 2018-03-01 16:35 GMT-03:00 Matías Badin <matias.ba

Re: [sqlite] String Too Long

2018-03-01 Thread David Raymond
How large the string, and what program/language are you using? -Original Message- From: sqlite-users [mailto:sqlite-users-boun...@mailinglists.sqlite.org] On Behalf Of Matías Badin Sent: Thursday, March 01, 2018 2:38 PM To: SQLite mailing list Subject: Re: [sqlite] String Too Long Yes

Re: [sqlite] String Too Long

2018-03-01 Thread Matías Badin
Yes, i am binding the string. 2018-03-01 16:35 GMT-03:00 Matías Badin : > The same issue using blob. > Thanks > > 2018-03-01 16:23 GMT-03:00 Igor Korot : > >> Hi, >> >> On Thu, Mar 1, 2018 at 1:20 PM, Matías Badin >> wrote:

Re: [sqlite] String Too Long

2018-03-01 Thread Matías Badin
The same issue using blob. Thanks 2018-03-01 16:23 GMT-03:00 Igor Korot : > Hi, > > On Thu, Mar 1, 2018 at 1:20 PM, Matías Badin > wrote: > > Hi all; > > I am trying to insert a big string and i have the message: Request too > long. > > > > I set my

Re: [sqlite] String Too Long

2018-03-01 Thread David Raymond
of the statement text (bad)? -Original Message- From: sqlite-users [mailto:sqlite-users-boun...@mailinglists.sqlite.org] On Behalf Of Igor Korot Sent: Thursday, March 01, 2018 2:23 PM To: SQLite mailing list Subject: Re: [sqlite] String Too Long Hi, On Thu, Mar 1, 2018 at 1:20 PM, Matías Badin

Re: [sqlite] String Too Long

2018-03-01 Thread Igor Korot
Hi, On Thu, Mar 1, 2018 at 1:20 PM, Matías Badin wrote: > Hi all; > I am trying to insert a big string and i have the message: Request too long. > > I set my parameter as "text" but i still have this problem. > > Do you know if i can use another type? BLOB? Thank you.

[sqlite] String Too Long

2018-03-01 Thread Matías Badin
Hi all; I am trying to insert a big string and i have the message: Request too long. I set my parameter as "text" but i still have this problem. Do you know if i can use another type? Thanks ___ sqlite-users mailing list