lsloan wrote:
> That is, if a query to Oracle was:
> 
>  select * from user1.table1
> 
> Then SQLite would treat it as:
> 
>  select * from table1
> 
> Since SQLite doesn't have users.
> 
> Am I right about that?

No. SQLite supports multiple named databases on a single connection (see ATTACH 
statement). The part before the period is taken to be the database name.

Igor Tandetnik

_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to