Re: [sqlite] How to exit from sqlite shell?

2009-05-04 Thread Kees Nuyt
On Mon, 4 May 2009 15:01:26 -0400, Pavel Ivanov wrote: >In windows shell Control-Z should be equivalent of Control-D on Unix >(it sends EOF to stdin). Yes, you're right. Control-Z, Return does it. The Return key is required to terminate the line editor. On Unix the

Re: [sqlite] How to exit from sqlite shell?

2009-05-04 Thread Griggs, Donald
I find it easy to confuse myself if I have either an unclosed quote, an unclosed "/*" comment, or an unterminated command (semicolon).Below is an example of two simultaneously. SQLite version 3.6.10 Enter ".help" for instructions Enter SQL statements terminated with a ";" sqlite> select

Re: [sqlite] How to exit from sqlite shell?

2009-05-04 Thread Ribeiro, Glauber
Yes, and Control-Z exits sqlite3, in Windows, as expected. g -Original Message- From: sqlite-users-boun...@sqlite.org [mailto:sqlite-users-boun...@sqlite.org] On Behalf Of Pavel Ivanov Sent: Monday, May 04, 2009 2:01 PM To: sqlite-users@sqlite.org Subject: Re: [sqlite] How to exit from

Re: [sqlite] How to exit from sqlite shell?

2009-05-04 Thread Pavel Ivanov
In windows shell Control-Z should be equivalent of Control-D on Unix (it sends EOF to stdin). Pavel On Mon, May 4, 2009 at 2:58 PM, Kees Nuyt wrote: > On Mon, 4 May 2009 14:00:45 -0400, "D. Richard Hipp" > wrote: > >> >>On May 4, 2009, at 1:44 PM, Sam Carleton

Re: [sqlite] How to exit from sqlite shell?

2009-05-04 Thread Kees Nuyt
On Mon, 4 May 2009 14:00:45 -0400, "D. Richard Hipp" wrote: > >On May 4, 2009, at 1:44 PM, Sam Carleton wrote: > >> prefix with a period: >> >> .exit > >Yes. Also ".quit" or ".q" or Control-D (on most Unix systems > - I don't know if Control-D works on windows) Control-D

Re: [sqlite] How to exit from sqlite shell?

2009-05-04 Thread D. Richard Hipp
On May 4, 2009, at 1:44 PM, Sam Carleton wrote: > prefix with a period: > > .exit Yes. Also ".quit" or ".q" or Control-D (on most Unix systems - I don't know if Control-D works on windows) > > > Lucius Fox wrote: >> Hi, >> >> Can you p

Re: [sqlite] How to exit from sqlite shell?

2009-05-04 Thread Sam Carleton
prefix with a period: .exit Lucius Fox wrote: Hi, Can you please tell me how to exit from sqlite shell? I try typing 'exit', 'quit', '.quit' or press cTRL X CTRL c, but they don't work. sqlite> exit ...> quit ...> ^X^C ...> ^C ...> ^X^C ...>

[sqlite] How to exit from sqlite shell?

2009-05-04 Thread Lucius Fox
Hi, Can you please tell me how to exit from sqlite shell? I try typing 'exit', 'quit', '.quit' or press cTRL X CTRL c, but they don't work. sqlite> exit ...> quit ...> ^X^C ...> ^C ...> ^X^C ...> .quit Thank you. ___ sq