Details
-
Type:
Improvement
-
Status:
Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: 1.5.1
-
Fix Version/s: Next Major Release
-
Component/s: Zend_Cache
-
Labels:None
Description
Apparently, Zend_Cache SQLite backend creates SQLite 2.x databases that most GUI tools fail to open them because they support only SQLite 3.x databases. Need an option to specify which version of SQLite database files to create (2.x, 3.x). Maybe, use PDO sqlite while creating the database file?
Further, under unix, the sqlite db file is created as a unix executable with the following privileges:
_www : Read & Write
staff : Read & Write
everyone : Read & Write
Is this an issue with not being able to open the file in sqlite GUI tools?
Zend_Cache_SQLite is creating sqlite2 databases probably because it is using the library:
http://www.php.net/manual/en/ref.sqlite.php
To create sqlite3 databases, it may have to use:
http://www.php.net/manual/en/ref.pdo-sqlite.php