vote up 0 vote down star

I have a problem with php and sqlite. I always have that warning:

Warning: sqlite_popen() [function.sqlite-open]: file is encrypted or is not a database.

the name I pass to connect is a database sqlite3. I don't know how to fix that ?

flag

0% accept rate
Does the PHP user (often, www-data) have read/write permissions to the database? – ceejayoz May 26 at 17:49

2 Answers

vote up 0 vote down

sqlite_open() only supports sqlite2.

if you want to use sqlite3 you'll have to switch to PDO.

link|flag
vote up 0 vote down

I would guess you have a database created with sqlite3 while the method call expects a sqlite (version 2) database. Try sqlite3 PHP API instead; here are the docs.

Note that sqlite3 support is compiled in with PHP 5.3.0. Then something like

$db = sqlite3_open(":memory:");

should suffice.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.