"Rich Rattanni" <[EMAIL PROTECTED]> wrote: > All: > Is it possible to have an sqlite database on a read only media? I > will only be issuing SELECT queries on this database. Are there any > pragma's you need to issue to let SQLITE know it is not acceptable to > write to the database file. >
SQLite works fine on read-only media. It figures out for itself that the database is read-only. You do not have to do anything special to tell it. -- D. Richard Hipp <[EMAIL PROTECTED]> ----------------------------------------------------------------------------- To unsubscribe, send email to [EMAIL PROTECTED] -----------------------------------------------------------------------------

