Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:48238 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 18898 invoked from network); 6 May 2010 18:00:28 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 6 May 2010 18:00:28 -0000 Received: from [127.0.0.1] ([127.0.0.1:22535]) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ECSTREAM id D2/60-16722-AB303EB4 for ; Thu, 06 May 2010 14:00:26 -0400 Authentication-Results: pb1.pair.com smtp.mail=ktdreyer@ktdreyer.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=ktdreyer@ktdreyer.com; sender-id=pass Received-SPF: pass (pb1.pair.com: domain ktdreyer.com designates 209.85.221.184 as permitted sender) X-PHP-List-Original-Sender: ktdreyer@ktdreyer.com X-Host-Fingerprint: 209.85.221.184 mail-qy0-f184.google.com Received: from [209.85.221.184] ([209.85.221.184:65077] helo=mail-qy0-f184.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 54/00-16722-9D003EB4 for ; Thu, 06 May 2010 13:48:09 -0400 Received: by qyk14 with SMTP id 14so303413qyk.17 for ; Thu, 06 May 2010 10:48:07 -0700 (PDT) MIME-Version: 1.0 Received: by 10.224.0.160 with SMTP id 32mr7230429qab.284.1273168086413; Thu, 06 May 2010 10:48:06 -0700 (PDT) Received: by 10.229.128.205 with HTTP; Thu, 6 May 2010 10:48:06 -0700 (PDT) Date: Thu, 6 May 2010 11:48:06 -0600 Message-ID: To: internals@lists.php.net Content-Type: text/plain; charset=UTF-8 Subject: PDO-SQLite version From: ktdreyer@ktdreyer.com (Ken Dreyer) 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