Re: [sqlite] determine SQLITE_MAX_LENGTH or sql_limit/sqlite3_limit

2011-11-14 Thread vinayh4
Sir , Firstly Thanks for quick reply But actually i need to know about how reset these values ... Is there any file available where we need to edit these values or in command line we need to set these values Please if u can share link or procedure to change these default settings it

Re: [sqlite] determine SQLITE_MAX_LENGTH or sql_limit/sqlite3_limit

2011-11-14 Thread Kevin Benson
http://www.sqlite.org/limits.html "2.Maximum Number Of Columns The SQLITE_MAX_COLUMN compile-time parameter is used to set an upper bound on: ◦The number of columns in a table ◦The number of columns in an index ◦The number of columns in a view ◦The number of terms in the SET clause of an UPDATE

Re: [sqlite] determine SQLITE_MAX_LENGTH or sql_limit/sqlite3_limit

2011-11-13 Thread vinayh4
Hi All I need to create table with more than 2000 columns, How to reset SQLITE_MAX_COLUMN value which is 2000 . Plz help me on this issue. Thanks Vinay Vannus wrote: > > That should do the trick, thanks for pointing it out. > > On 10 February 2011 06:18, Dan Kennedy

Re: [sqlite] determine SQLITE_MAX_LENGTH or sql_limit/sqlite3_limit

2011-02-10 Thread Vannus
That should do the trick, thanks for pointing it out. On 10 February 2011 06:18, Dan Kennedy wrote: > On 02/10/2011 01:56 AM, Vannus wrote: > > Zeoslib is reading sqlite field lengths incorrectly, as it checks for > > brackets after the field typename ie. CHAR(123) > >

Re: [sqlite] determine SQLITE_MAX_LENGTH or sql_limit/sqlite3_limit

2011-02-09 Thread Dan Kennedy
On 02/10/2011 01:56 AM, Vannus wrote: > Zeoslib is reading sqlite field lengths incorrectly, as it checks for > brackets after the field typename ie. CHAR(123) > presumably this is only affecting me because I haven't defined field lengths > in my sqlite3 db. > > I don't want to hard-code

[sqlite] determine SQLITE_MAX_LENGTH or sql_limit/sqlite3_limit

2011-02-09 Thread Vannus
Zeoslib is reading sqlite field lengths incorrectly, as it checks for brackets after the field typename ie. CHAR(123) presumably this is only affecting me because I haven't defined field lengths in my sqlite3 db. I don't want to hard-code 1,000,000,000 or 2147483647 in as the field length - but