Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:48810 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 36960 invoked from network); 16 Jun 2010 19:56:47 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 16 Jun 2010 19:56:47 -0000 Authentication-Results: pb1.pair.com smtp.mail=danhen@web.de; spf=permerror; sender-id=unknown Authentication-Results: pb1.pair.com header.from=danhen@web.de; sender-id=unknown Received-SPF: error (pb1.pair.com: domain web.de from 217.72.192.242 cause and error) X-PHP-List-Original-Sender: danhen@web.de X-Host-Fingerprint: 217.72.192.242 fmmailgate04.web.de Linux 2.4/2.6 Received: from [217.72.192.242] ([217.72.192.242:56279] helo=fmmailgate04.web.de) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id DE/65-16489-D7C291C4 for ; Wed, 16 Jun 2010 15:56:46 -0400 Received: from mwmweb038 ( [172.20.18.47]) by fmmailgate04.web.de (Postfix) with ESMTP id 1A56567C11C5 for ; Wed, 16 Jun 2010 21:56:43 +0200 (CEST) Received: from [89.246.223.49] by mwmweb038 with HTTP; Wed Jun 16 21:56:43 CEST 2010 Date: Wed, 16 Jun 2010 21:56:43 +0200 (CEST) To: internals@lists.php.net Message-ID: <1413048442.422448.1276718203095.JavaMail.fmail@mwmweb038> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Priority: 3 Importance: normal Sensitivity: Normal X-Provags-ID: V01U2FsdGVkX199iNsntjjBepeITIEvU6g3Z+4fdBKmcr+WSZ9BO/kzml3VUeKFADdp lR9HpcMSNZIh5bFNVSp32Q== Subject: Database-Connectivity From: danhen@web.de (Daniel Henning) Hallo, after reading about removing sqlite2 and mssql, I was thinking about some problems with database-connections via pdo on windows. Pdo_mssql isn't included in the windows binaries anymore. Pdo_dblib is meant for non MS-Plattforms. Pdo_odbc doesn't work as replacement on Windows. Reason: SQL-Statements working untouched with pdo_mysql, pdo_sqlite, pdo_oci, pdo_pgsql and pdo_mssql won't work with pdo_odbc (ODBC is complaining about datatype mismatches where aren't any) On the other hand pdo_oracle can't handle resultsets with a CLOB in each row... After all, there is one question left: Is it advisably building a multi-database-application with pdo in the moment? Kind regards, Daniel