Owen Watson wrote:
I'd like to have a one line batch file:
sqlite3 test 'insert into testable values ('value1','value2')'

but the few variants of this I've tried don't work.

I've seen and understood the batch file that calls another text file
approach but I was wondering  if I could avoid this overhead for a
one-liner.

Owen,

Try this instead:

sqlite3 test "insert into testable values ('value1','value2')"

HTH
Dennis Cote

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

Reply via email to