Problem when working with SQLite in Ch2
I keep running into a problem working with SQLite in the terminal. Sometimes when I enter a command I'll start seeing "..." like this:
sqlite> .import "countries.txt" Country
sqlite> select * from country
...> select * from Country
No matter what I do, I can't get anything else to work. I just keep getting ...> over and over. I understand from the SQLite site that this means it's a continuation and it's waiting for more info, but I don't know what to do. Can anyone help?
|