In PHP 5.2, phpinfo()
reports the PDO-SQLite version as "3.3.7".
However, from the SVN history of the 5.2 branch, SQLite 3.3.15 and
even part of 3.3.16 were merged in. The VERSION file was updated to
track this, but someone changed it to "3.3.7" under the assumption
that "3.3.17" was a typo.
http://svn.php.net/viewvc/php/php-src/branches/PHP_5_2/ext/pdo_sqlite/sqlite/
These version number discrepancies were a real "gotcha" when I was
trying to pinpoint an obscure locking problem in SQLite 3.3.x. What
version number should phpinfo()
really report for PDO-SQLite?
- Ken
hi,
Do you build php against an external version?
Cheers,
In PHP 5.2,
phpinfo()
reports the PDO-SQLite version as "3.3.7".
However, from the SVN history of the 5.2 branch, SQLite 3.3.15 and
even part of 3.3.16 were merged in. The VERSION file was updated to
track this, but someone changed it to "3.3.7" under the assumption
that "3.3.17" was a typo.http://svn.php.net/viewvc/php/php-src/branches/PHP_5_2/ext/pdo_sqlite/sqlite/
These version number discrepancies were a real "gotcha" when I was
trying to pinpoint an obscure locking problem in SQLite 3.3.x. What
version number shouldphpinfo()
really report for PDO-SQLite?
- Ken
--
--
Pierre
@pierrejoye | http://blog.thepimp.net | http://www.libgd.org
I am referring to the SQLite version that is bundled in PDO-SQLite in
PHP 5.2. That is the one I have been using in my PHP builds.
I am suggesting that the version numbers reported by the VERSION file
and the phpinfo()
function are misleading.
- Ken
hi,
Do you build php against an external version?
Cheers,
In PHP 5.2,
phpinfo()
reports the PDO-SQLite version as "3.3.7".
However, from the SVN history of the 5.2 branch, SQLite 3.3.15 and
even part of 3.3.16 were merged in. The VERSION file was updated to
track this, but someone changed it to "3.3.7" under the assumption
that "3.3.17" was a typo.http://svn.php.net/viewvc/php/php-src/branches/PHP_5_2/ext/pdo_sqlite/sqlite/
These version number discrepancies were a real "gotcha" when I was
trying to pinpoint an obscure locking problem in SQLite 3.3.x. What
version number shouldphpinfo()
really report for PDO-SQLite?