Regarding:
 " I need something like:
      cat A.db B.db C.db > full.db      # kidding"
-------------------------------------------------------------

Hi Alberto,

My first inclination is to consider this a classic use of the 
   ATTACH DATABASE command
http://www.sqlite.org/lang_attach.html

 
SQLITE3 A.db
>ATTACH 'B.db' as B;
>ATTACH 'C.db' as C;

>Create tableFromB as select * from B.tablename;
>Create tableFromC as select * from C.tablename;

Create indices as needed.



-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------

Reply via email to