Re: [sqlite] SQLite JDBC driver performance

2009-06-20 Thread Adam Megacz
Christopher Mason writes: > [Apologies for posting this here, but the sqlitejdbc list appears to be > defunct.] Google deleted it without warning or explanation: http://www.zentus.com/sqlitejdbc/google-group-disappearance.html It has been relocated here: https://lists.hcoop.net/listinfo/

Re: [sqlite] Error message from RAISE just plain text ?

2009-06-20 Thread Simon Slavin
On 20 Jun 2009, at 5:21pm, Dennis Cote wrote: > From the parser you can see the allowed raise function syntax. It honestly didn't occur to me to read the source code. Thanks, Dennis. Simon. ___ sqlite-users mailing list sqlite-users@sqlite.org http:/

Re: [sqlite] Error message from RAISE just plain text ?

2009-06-20 Thread Dennis Cote
Simon Slavin wrote: > On 15 Jun 2009, at 2:37am, Simon Slavin wrote: > > >> The examples for the error text I've found are all simple text >> strings, for instance >> >> RAISE(ROLLBACK, 'delete on table "foo" violates foreign key constraint >> "fk_foo_id"') >> >> What I want to do is more like >

Re: [sqlite] Error message from RAISE just plain text ?

2009-06-20 Thread Simon Slavin
On 15 Jun 2009, at 2:37am, Simon Slavin wrote: > The examples for the error text I've found are all simple text > strings, for instance > > RAISE(ROLLBACK, 'delete on table "foo" violates foreign key constraint > "fk_foo_id"') > > What I want to do is more like > > RAISE(ROLLBACK, 'Attempt to del

Re: [sqlite] async io and locks

2009-06-20 Thread Jim Wilcoxson
Async I/O fits perfectly with my app: I don't need the durable guarantee. But I do need the ability to activate it with a pragma since it isn't a C app. Are there plans to make async I/O available via pragma? Jim On 6/20/09, Dan wrote: > > I think we have quite different approaches. > > The SQ