Re: [nox-dev] Batch insert for SQLite in NOX

2009-02-25 Thread Teemu Koponen
On Feb 25, 2009, at 08:35 , kk yap wrote: I was wondering how to do batch inserts to SQLite database in NOX. I have managed to do row by row insertion using Sync_transactional_storage. However, there does not seem to have any batch insertion in storage from my grep efforts. Can someone point

Re: [nox-dev] Batch insert for SQLite in NOX

2009-02-24 Thread kk yap
Hi, I mean in NOX. :D Regards KK 2009/2/24 Rob Sherwood : > Assuming this is a normal sqlite db, I would just use the > /usr/bin/sqlite3 command line interface with the .import command; > check out .help for the online help and instructions. > > > - Rob > . > > > > On Tue, Feb 24, 2009 at 10:35

Re: [nox-dev] Batch insert for SQLite in NOX

2009-02-24 Thread Rob Sherwood
Assuming this is a normal sqlite db, I would just use the /usr/bin/sqlite3 command line interface with the .import command; check out .help for the online help and instructions. - Rob . On Tue, Feb 24, 2009 at 10:35 PM, kk yap wrote: > Hi, > > I was wondering how to do batch inserts to SQLite

[nox-dev] Batch insert for SQLite in NOX

2009-02-24 Thread kk yap
Hi, I was wondering how to do batch inserts to SQLite database in NOX. I have managed to do row by row insertion using Sync_transactional_storage. However, there does not seem to have any batch insertion in storage from my grep efforts. Can someone point me to the correct place to hunt? Thank