nvi-yMULe1UMIukeIZ0/[EMAIL PROTECTED] wrote:
Hello, thanks in advance, I've tried to answer this through extensive
searching.

The following syntax does not create a database, e.g.;

sqlite> sqlite3 testdatabase

SQLite defers creating the database file until you create the first table.

However, if I create a sqlite database with TkSQLite, sqlite.exe can
'attach' to that test database, and, using the sqlite.exe command
'.databases', I can see that database, however, using '.tables'
doesn't show me the test table.

.tables command only shows tables in the main database. To see tables in attached databases, use

select * from db.sqlite_master;

where 'db' is the name under which you attached the database.

Igor Tandetnik

-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------

Reply via email to