Re: [sqlite] New default table on DB initialization

2011-04-08 Thread Glenn McAllister
amelCase is an internal function, subject to change at any time. I'd go with the 'CREATE TABLE IF NOT EXISTS' route as suggested by others. Glenn McAllister ___ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Re: [sqlite] segmentation fault

2008-04-14 Thread Glenn McAllister
q.html - GDB http://en.wikipedia.org/wiki/GNU_Debugger http://www.gnu.org/software/gdb/ http://sourceware.org/gdb/download/onlinedocs/gdb.html Please start reading. -- Glenn McAllister <[EMAIL PROTECTED]> +1 416 348 1594 SOMA Networks, Inc. http://www.somanetwo

Re: [sqlite] problem with undefined reference

2008-04-05 Thread Glenn McAllister
nclude and the warning about main can be ignored, but if you want to get rid of it, change it to the more standard int main(int argc, char* argv[]) { Might I suggest doing more work on learning how to use your development environment. Good luck. -- Glenn McAllister <[EMAIL PROTECTED]

Re: [sqlite] Mailing List Changes

2008-02-04 Thread Glenn McAllister
mlm to mailman? I've used ezmlm for years and haven't had any problems with it. That being said, I've only actually setup an ezmlm list a couple of times, and that was several years ago, so I'm probably forgetting the headaches. -- Glenn McAllister <[EMAIL PROTECTED]> +1 416 3

Re: [sqlite] Shared Memory Question

2006-02-15 Thread Glenn McAllister
there (no surprise, it's a filesystem after all). Dunno if that helps any. Glenn McAllister SOMA Networks, Inc. Drew, Stephen wrote: Hello all, An interesting use of the in-memory SQLite database would be to use it in shared memory and have the data shared between applications but stored once.