[sqlite] Rekall now works with SQLite

2004-10-29 Thread John Dean
Hi I have just created a new version of Rekall (V2.2.2) which includes a driver for SQLite V2.15.x. At the moment this driver is only included with the Windows version of Rekall and it will only work with V2.2.2. Versions for Linux and Mac X OS will follow shortly. What is Rekall? Rekall is a p

Re: [sqlite] Sample code

2004-10-29 Thread Paul Pigott
Thanks, this is just what I was looking for. Paul - Original Message - From: "Clay Dowling" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, October 29, 2004 9:27 AM Subject: Re: [sqlite] Sample code > > Paul Pigott said: > > I'm putting together a small test program based on

Re: [sqlite] Sqlite and C

2004-10-29 Thread Florian Boor
Hi, > Someone have a link about little software like an address book > write in ansi C with sqlite? look at http://gpe.handhelds.org most of the applications that need to store data use sqlite. e.g. gpe-contacts and gpe-todo (The database interface of it is in libtododb.) Greetings Florian --

[sqlite] Sqlite and C

2004-10-29 Thread Max
Someone have a link about little software like an address book write in ansi C with sqlite? Thanks 1K Ciao Max -- Secondo alcuni autorevoli testi di tecnica Aeronautica, il calabrone non può volare, a causa della forma e del peso del proprio corpo in rapporto alla superficie alare. Ma il calabron

Re: [sqlite] SQLite V2 CAPI Reference

2004-10-29 Thread Ulrik Petersen
Hi, > Hi > > I have been trying to get a SQLite V2 pugin driver for Rekall working in > Windows, which was donated by one of our users. It includes a call to > sqlite_get_table_printf( m_sqlite, "SELECT sql FROM sqlite_master WHERE > name=%Q;", > &pResults, &rows, &cols, &err, ( c

[sqlite] SQLite V2 CAPI Reference

2004-10-29 Thread John Dean
Hi I have been trying to get a SQLite V2 pugin driver for Rekall working in Windows, which was donated by one of our users. It includes a call to sqlite_get_table_printf( m_sqlite, "SELECT sql FROM sqlite_master WHERE name=%Q;", &pResults, &rows, &cols, &err, ( const char* )oldNa

Re: [sqlite] Sample code

2004-10-29 Thread Clay Dowling
Paul Pigott said: > I'm putting together a small test program based on some code I found in > "C/C++ Users Journal". The original code was in sqlite2, and I'm using > sqlite3. I'm having a couple of issues with the sqlite3_stmt definition > and its use in sqlite3_prepare and sqlite3_step. Does

Re: [sqlite] How are NULL values deleted?

2004-10-29 Thread rbundy
It's not possible for a column value to be equal to NULL; hence the SQL syntax is 'IS NULL'. However, in an UPDATE statement, writing 'columnA=NULL' is valid, as in this context '=' is an assignment, not a relationship operator. Regards. rayB |-+> |

Re: [sqlite] Sample code

2004-10-29 Thread Ulrik Petersen
Paul, You wrote: > Greetings all, > > I'm putting together a small test program based on some code I found in > "C/C++ Users Journal". The original code was in sqlite2, and I'm using > sqlite3. I'm having a couple of issues with the sqlite3_stmt definition > and its use in sqlite3_prepare and s

Re: [sqlite] Sample code

2004-10-29 Thread Ulrik Petersen
Paul, > Greetings all, > > I'm putting together a small test program based on some code I found in > "C/C++ Users Journal". The original code was in sqlite2, and I'm using > sqlite3. I'm having a couple of issues with the sqlite3_stmt definition > and its use in sqlite3_prepare and sqlite3_step.

Re: [sqlite] Sample code

2004-10-29 Thread Christian Smith
On Fri, 29 Oct 2004, Paul Pigott wrote: >Greetings all, > >I'm putting together a small test program based on some code I found in >"C/C++ Users Journal". The original code was in sqlite2, and I'm using >sqlite3. I'm having a couple of issues with the sqlite3_stmt definition >and its use in sqli

[sqlite] Sample code

2004-10-29 Thread Paul Pigott
Greetings all, I'm putting together a small test program based on some code I found in "C/C++ Users Journal". The original code was in sqlite2, and I'm using sqlite3. I'm having a couple of issues with the sqlite3_stmt definition and its use in sqlite3_prepare and sqlite3_step. Does anyone h