I was using sqlite to connect to MyVideos75.db when I noticed that the usual method of getting "un-stuck" from the sqlite prompt (entering a semicolon) wasn't working:
pi@raspbmc:~/.xbmc/userdata/Database$ sqlite3 MyVideos75.db
SQLite version 3.7.13 2012-06-11 02:05:22
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> select * from files where strFilename like %Recreation%';
...>
...> ;
...> ;
...> .quit
...> ;
...> .exit
...> ;
...>
...> ;
...>
So... how do I get myself out of the prompt if .quit, .exit, and ; all don't work?