[sqlite] pre-compiling prepared statements

2006-08-31 Thread chetana bhargav
Hi, Is there any way to pre compile some of the prepared statements during compile time. I am having 4 tables of which two tables doesn't create any triggers/joins. I am basically trying to speed up the queries on these tables (as they are most frequently used). I am looking for ways so

Re: [sqlite] SQLite Conference Tutorials

2006-08-31 Thread Dennis Cote
Sandeep Suresh wrote: Where is the conference ? Is it open for everyone to register ? Further information is available here http://www.tcl.tk/community/tcl2006/ HTH Dennis Cote - To unsubscribe, send email to

Re: [sqlite] SQLite Conference Tutorials

2006-08-31 Thread drh
Sandeep Suresh <[EMAIL PROTECTED]> wrote: > Where is the conference ? Is it open for everyone to register ? > The conference is in the Chicago area, in Naperville. Full information is available on the web at: http://www.tcl.tk/community/tcl2006/ Anybody can register for the conference. Or

Re: [sqlite] SQLite Conference Tutorials

2006-08-31 Thread Sandeep Suresh
Where is the conference ? Is it open for everyone to register ? Thanks, Sandeep. Bud Beacham wrote: Will the handouts, slides, etc. be available to download for those unable to attend? [EMAIL PROTECTED] wrote: Martin Jenkins wrote: [EMAIL PROTECTED] wrote: On Tuesday, October

Re: [sqlite] SQLite Conference Tutorials

2006-08-31 Thread Martin Jenkins
[EMAIL PROTECTED] wrote: > > In past years there has been audio-cast of the main conference, but > > not for the tutorials. I do not know what will be set up for this > > year. I'll talk to the organizers and let you know. Thanks. I enjoyed the Google talk, so I'm looking forward to hearing

Re: [sqlite] SQLite Conference Tutorials

2006-08-31 Thread drh
Bud Beacham <[EMAIL PROTECTED]> wrote: > Will the handouts, slides, etc. be available to download for those unable to > attend? > Possibly. That is unclear at the moment. But be warned, that my handout/slide style is evolving and my more recent slides are pretty useless without the

Re: [sqlite] SQLite Conference Tutorials

2006-08-31 Thread Bud Beacham
Will the handouts, slides, etc. be available to download for those unable to attend? [EMAIL PROTECTED] wrote: Martin Jenkins wrote: > [EMAIL PROTECTED] wrote: > > On Tuesday, October 10, there will be a full day of tutorials on > > SQLite covering all the latest features including: > >

Re: [sqlite] SQLite Conference Tutorials

2006-08-31 Thread drh
Martin Jenkins <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] wrote: > > On Tuesday, October 10, there will be a full day of tutorials on > > SQLite covering all the latest features including: > > Sounds good - will there be a webcast or Google video for those of us > unable to attend in

Re: [sqlite] SQLite Conference Tutorials

2006-08-31 Thread Martin Jenkins
[EMAIL PROTECTED] wrote: On Tuesday, October 10, there will be a full day of tutorials on SQLite covering all the latest features including: Sounds good - will there be a webcast or Google video for those of us unable to attend in person? Martin

[sqlite] SQLite Conference Tutorials

2006-08-31 Thread drh
On Tuesday, October 10, there will be a full day of tutorials on SQLite covering all the latest features including: * The shared cache enhancements * Memory management enhancements for embedded devices * Loadable extensions * Virtual tables * Full text search The venue is

Re: [sqlite] How to edit Makefile.linux-gcc to define those SQLITE_OMIT_*?

2006-08-31 Thread Martin Jenkins
Sarah wrote: > And during make, I noticed that these new-added -DSQLITE_OMIT_XX did > not appeared in the command lines. Are you running the right makefile? By default makes runs "Makefile" or "makefile", so unless one of those two files includes your modified makefile or is linked to your

Re: [sqlite] Sqlite 3.3.7 intel compiler warnings

2006-08-31 Thread Christian Smith
Jay Sprenkle uttered: hidden variables might very well not be a problem, if it was done that way on purpose. It should never be done on purpose. It is obfuscation pure and simple. There is never a good reason to do this, other than perhaps hiding a global variable (and even that is not a

Re: [sqlite] How to edit Makefile.linux-gcc to define those SQLITE_OMIT_*?

2006-08-31 Thread Sarah
Hi, I've added the following lines in the Makefile.linux-gcc file: OPTS += -DSQLITE_OMIT_ALTERTABLE OPTS += -DSQLITE_OMIT_AUTHORIZATION OPTS += -DSQLITE_OMIT_AUTOVACUUM OPTS += -DSQLITE_OMIT_AUTOINCREMENT OPTS += -DSQLITE_OMIT_BLOB_LITERAL OPTS += -DSQLITE_OMIT_COMPLETE OPTS +=

[sqlite] New conflict clause: update

2006-08-31 Thread Ramon Ribó
Hello, I was thinking on a new option that could be useful for sqlite. A new conflict clause called "update" so that the following SQL command: insert or update into table1 (a,b) values (1,2) was equivalent to update table1 set a=1,b=2 where ?unique-key-constraint? when a

Re: [sqlite] need to form an frame work for database independent API

2006-08-31 Thread Markus Hoenicka
Vivien Malerba <[EMAIL PROTECTED]> was heard to say: > I'm working on libgda and libgnomedb which are abstraction libraries > for SQlite, postgreSQL, MySQL, Oracle, ... There is a BDB adaptator > but it needs some work. > Please wisit http://www.gnome-db.org (the website is very outdated but >

Re: [sqlite] need to form an frame work for database independent API

2006-08-31 Thread Vivien Malerba
On 8/18/06, Narendran <[EMAIL PROTECTED]> wrote: I wish to form an database independant API for sqlite and BerkeleyDB . I need to now wht factors should consider . i am new to both . I have problems in running an simple program in sqlite . its say can't find the sqlite3_open( . If i paste

Re: [sqlite] need to form an frame work for database independent API

2006-08-31 Thread Narendran
check the library file location and when compiling give the path name as gcc -I/usr/local/include and -L/usr/local/lib just like the above find the location of the include and library file make sure u installed properly . Thanking you B.Narendran -- View this message in context:

Re: [sqlite] converting a sqlite table to dbf

2006-08-31 Thread Eric Bohlman
P Kishor wrote: Thanks, so the answer is there is no straight-forward way of doing this. I will export to CSV, and then rebuild a dbf using Perl. Since you've got Perl, you can skip the CSV step; just make sure you have DBI and DBD::SQLite and DBD::XBase installed and create connections to