Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:48832 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 94118 invoked from network); 18 Jun 2010 17:50:07 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 18 Jun 2010 17:50:07 -0000 Authentication-Results: pb1.pair.com smtp.mail=jbondc@openmv.com; spf=permerror; sender-id=unknown Authentication-Results: pb1.pair.com header.from=jbondc@openmv.com; sender-id=unknown Received-SPF: error (pb1.pair.com: domain openmv.com from 64.15.152.204 cause and error) X-PHP-List-Original-Sender: jbondc@openmv.com X-Host-Fingerprint: 64.15.152.204 mail.ca.gdesolutions.com Received: from [64.15.152.204] ([64.15.152.204:49453] helo=mail.ca.gdesolutions.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 82/25-59924-EC1BB1C4 for ; Fri, 18 Jun 2010 13:50:06 -0400 Received: from localhost (localhost [127.0.0.1]) by mail.ca.gdesolutions.com (Postfix) with ESMTP id 8B8D25D5A; Fri, 18 Jun 2010 13:50:03 -0400 (EDT) X-Virus-Scanned: amavisd-new at gdesolutions.com Received: from mail.ca.gdesolutions.com ([127.0.0.1]) by localhost (mail.ca.gdesolutions.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id skZ6qQ3tmDfq; Fri, 18 Jun 2010 13:50:03 -0400 (EDT) Received: from djbondc (modemcable083.208-56-74.mc.videotron.ca [74.56.208.83]) by mail.ca.gdesolutions.com (Postfix) with ESMTP id 1D3E25D51; Fri, 18 Jun 2010 13:50:03 -0400 (EDT) To: "'Ilia Alshanetsky'" , "'Pierre Joye'" Cc: References: In-Reply-To: Date: Fri, 18 Jun 2010 13:50:02 -0400 Message-ID: <007d01cb0f0e$aded25f0$09c771d0$@com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook 12.0 Thread-Index: AcsNRBwQAVIxyiwVRCuLAc8QtGVLAwBySnqQ Content-Language: en-ca Subject: RE: [PHP-DEV] Remove sqlite2 from trunk From: jbondc@openmv.com ("Jonathan Bond-Caron") On Wed Jun 16 07:04 AM, Ilia Alshanetsky wrote: > > > drop the Sqlite2 extensions from Trunk as they are superseded by > the > > Sqlite3 > > > extensions. The sqlite2 library is no longer maintainer and the > > > migration path from version 2 to 3 is very simple. Unless there > > > any objections, I'd like to make this happen in the next week or two. > > I'm all for starting to use sqlite3 but I found two issues with the migration to the new api: a) sqlite_busy_timeout is not available in sqlite3.c This is important for an application to return a failure right away instead of wait for locks to be release. The patch looks simple since it's a wrapper for SQLITE_API int sqlite3_busy_timeout(sqlite3*, int ms); b) No persistent connections Any reason why it wasn't migrated from sqlite.c?