On Fri, May 07, 2010 at 07:06:52AM -0700, a1rex scratched on the wall:
> Since we are at this topic let me ask the question: Are the table
> names case insensitive?

$ ./sqlite3
SQLite version 3.6.23.1
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> create table T ( i );
sqlite> insert into t values ( 1 );
sqlite> select * from t;
1
sqlite> select * from T;
1
sqlite> select * from "t";
1
sqlite> select * from "T";
1
sqlite>





-- 
Jay A. Kreibich < J A Y  @  K R E I B I.C H >

"Our opponent is an alien starship packed with atomic bombs.  We have
 a protractor."   "I'll go home and see if I can scrounge up a ruler
 and a piece of string."  --from Anathem by Neal Stephenson
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to