> How do I set a transaction (inserting items) to ignore > doubles in keys? As the default behaviour now is to abort/rollback...
Take a look at this: http://www.sqlite.org/lang.html#conflict > I've also been looking where the sqlite_vm - structure is defined, > but I did not found anything... Is that normal? Or is it just a > pointer to a struct with nothing inside? The sqlite_vm structure is opaque to the user. It gets cast to a Vdbe* internally by SQLite. Dan.

