Vander Clock Stephane <[email protected]> wrote: > i want to use the pragma command to setup the page size. however they say : > "The page size may only be set if the database has not yet been created." > > but how to do because as soon as i do sqlite3_open_v2 then the database > is created ?
No, the database is created when the first data manipulation statement runs (usually, CREATE TABLE). Precisely so that you could issue some pragmas first. -- Igor Tandetnik _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

