On 12/29/06, Griggs, Donald <[EMAIL PROTECTED]> wrote:
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;


Hmms, I think this will do the trick.
Thank you :)
Alberto
--
Alberto Simões

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

Reply via email to