in reply to Re^2: SQLite function .import not working
in thread SQLite function .import not working

But... I need to do
sqlite3 dbname .separator \t .import filename tablename
How can I do that? (put 2 sqlite3 commands on the command line)?

Replies are listed 'Best First'.
Re^4: SQLite function .import not working
by Anonymous Monk on Jun 02, 2010 at 00:43 UTC
    Maybe
    system 'sqlite3', 'dbname', ".separator \t\n.import filename tablename +";
    But really, you need to perldoc -f system and man sqlite3