On 9/14/05, Sijm, Norbert <[EMAIL PROTECTED]> wrote: > > > > Hi, I'm trying to execute a command in a DOS batchfile , but I get a syntax > error. Is this supported in 2.8.16 ? > ( sqlite mydbase.db select * from table1; )
Try enclosing your SQL statements in double quotes, like this: sqlite mydbase.db "select * from table1;" -- Nemanja Corlija <[EMAIL PROTECTED]>

