Re: [sqlite] Sqlite on RAM

2008-05-27 Thread Dimitri
Hi, Hildemaro Carrasquel wrote: > How do i do for running on RAM? Unless I misunderstand your question, you've already asked: http://sqlite.org:8080/cgi-bin/mailman/private/sqlite-users/2008-May/003023.html Weren't the answers useful? -- Dimi

Re: [sqlite] make sqlite3 ends with error "make: Fatal error: Command failed for target `libsqlite3.la'"

2008-05-05 Thread Dimitri
hard to tell without the previous error messages. -- Dimitri ___ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Re: [sqlite] SQLITE_OMIT_xxx

2008-04-21 Thread Dimitri
han usual. In your case, it could have been an occasional failure. I suggest reporting the issue to Perforce, they will most probably fix it. -- Dimitri ___ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listin

Re: [sqlite] how to build sqlite under winxp?

2008-04-20 Thread Dimitri
Hi, > NO make file found in that zip, downloaded from the official website... Which exact ZIP file? -- Dimitri ___ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Re: [sqlite] Proper use of sqlite-amalgamation.

2008-04-03 Thread Dimitri
http://www.sqlite.org/download.html that points to: http://www.sqlite.org/amalgamation.html -- Dimitri ___ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Re: [sqlite] DBD::SQLite::Amalgamation?

2008-03-31 Thread Dimitri
not certain what the call to DBI->connect() does exactly, I understand it creates a database called 'foo' in the current directory. Is the current directory mounted through NFS? -- Dimitri ___ sqlite-users mailing list sqlite-users@sqlite.org http://sq

Re: [sqlite] Major memory leak

2008-03-24 Thread Dimitri
but a memory footprint problem is not a memory leak: http://en.wikipedia.org/wiki/Memory_leak -- Dimitri ___ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Re: [sqlite] sqlite 3.5.6 and readline

2008-03-01 Thread Dimitri
libsqlite3.so.0 => /tmp/install/lib/libsqlite3.so.0 [...] libreadline.so.5 => /tmp/install/lib/libreadline.so.5 [...] [...] $ Regards, -- Dimitri ___ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.

Re: [sqlite] undefined symbol: sqlite3_prepare_v2

2008-02-27 Thread Dimitri
sn't work. How is this single server different from the other servers? Different Linux distribution? Different version of SQLite? -- Dimitri ___ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Re: [sqlite] Re: building SQLite 3.5.4 with SQLITE_OMIT_LOAD_EXTENSION

2007-12-30 Thread Dimitri
t;, I hope this will be reconsidered. Regards, -- Dimitri - To unsubscribe, send email to [EMAIL PROTECTED] -

[sqlite] Re: building SQLite 3.5.4 with SQLITE_OMIT_LOAD_EXTENSION

2007-12-29 Thread Dimitri
': sqlite3.c:80545: warning: implicit declaration of function 'safe_isspace' [...] -- Dimitri - To unsubscribe, send email to [EMAIL PROTECTED] -

[sqlite] building SQLite 3.5.4 with SQLITE_OMIT_LOAD_EXTENSION

2007-12-29 Thread Dimitri
#define SQLITE_CORE 1 /* Disable the API redefinition in sqlite3ext.h */ #ifndef SQLITE_OMIT_LOAD_EXTENSION "works" for me - functions such as qlite3OsDlOpen() are defined but not used but at least SQLite builds. Any clue?