Re: [sqlite] sqlite3_bind_int64, sqlite3_bind_int, sqlite_uint64

2008-09-04 Thread Roar Bjørgum Rotvik
older compilers. And I personally thinks that using explicit datatypes like uin32_t is way more descriptive than 'unsigned int' and similar for datatypes where you really need to know the length. -- Roar Bjørgum Rotvik ___ sqlite-users mailing list

Re: [sqlite] Actually delete deleted rows from databasefile

2008-05-08 Thread Roar Bjørgum Rotvik
ed from >> the >> database file (at the same time as the sql command "delete" is performed), >> is this >> possible? > > Compile with SQLITE_SECURE_DELETE to memset(0) deleted data. Thank you, that would do it for me :) Off to test it... -- Roar Bjørgum Rotvik _

[sqlite] Actually delete deleted rows from databasefile

2008-05-08 Thread Roar Bjørgum Rotvik
nstead grows. What is the rule for reusing a deleted block (if it is so)? Is it possible to configure/tweak sqlite to actually delete or at least memset(0) a deleted row? I need to make sure that a deleted row is actually deleted from the database file