Newsgroups: php.internals,php.pdo Path: news.php.net Xref: news.php.net php.internals:50097 php.pdo:479 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 53035 invoked from network); 4 Nov 2010 01:52:29 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 4 Nov 2010 01:52:29 -0000 Authentication-Results: pb1.pair.com header.from=ssufficool@gmail.com; sender-id=pass; domainkeys=bad Authentication-Results: pb1.pair.com smtp.mail=ssufficool@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.216.42 as permitted sender) DomainKey-Status: bad X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: ssufficool@gmail.com X-Host-Fingerprint: 209.85.216.42 mail-qw0-f42.google.com Received: from [209.85.216.42] ([209.85.216.42:54912] helo=mail-qw0-f42.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 4B/90-46367-BD112DC4 for ; Wed, 03 Nov 2010 20:52:28 -0500 Received: by qwj8 with SMTP id 8so718305qwj.29 for ; Wed, 03 Nov 2010 18:52:25 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=eG1zld0vcCQYJSyKg3b0ERNO5VUkkwbzeeShV/DSkAc=; b=fekSya86Q4R8mx3RAxFWTEWU718WDyD/sFdONIuxE0btp4AvXIIjfS3shAdoUA80g+ /LQJNPOLJQGbOtLKpKgF9HW3GDdPEMg/SjY8s+8UoX4q8Rd8rYpUTA4J8EhXOorGh1yh NrgRGgTlqY/ImPFsMzar0vY1ciPVvdGAMrNSc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=phQhbQWi/pbJ88uo5li7pcuvoV0dJGDnYOGjl+y1ZrOZNlhecZ/cnEAHeypZQxUOZ5 npPwyaETsVk93Zi1UoTSjRydndMrxpQL6inSZ7aad6onr5Oo0q04av6zcwv0TPp2J8wq T8oTdCgomFauoFOh7B8sDjSdqAh3Vo0Ev7JfM= MIME-Version: 1.0 Received: by 10.229.219.132 with SMTP id hu4mr47563qcb.46.1288835544732; Wed, 03 Nov 2010 18:52:24 -0700 (PDT) Received: by 10.220.172.202 with HTTP; Wed, 3 Nov 2010 18:52:24 -0700 (PDT) Date: Wed, 3 Nov 2010 18:52:24 -0700 Message-ID: To: PHP Developers Mailing List , pdo Content-Type: text/plain; charset=ISO-8859-1 Subject: PDO_DBLIB Native PHP Type binding From: ssufficool@gmail.com (Stanley Sufficool) Before I gut PDO_DBLIB one more time to implement native parameter binding for stored procedures, what are the thoughts on returning the column values from the database as the native PHP type when possible? Currently everything is returned as a string, incurring overhead for conversion and creating problems hinting at the desired binding type for BLOBS and numeric data types.