From:             mauroi at digbang dot com
Operating system: Win XP SP2
PHP version:      5CVS-2006-03-11 (snap)
PHP Bug Type:     PDO related
Bug description:  getColumnMeta() crashes

Description:
------------
I have this problem with pdo_pgsql.
Whenever I try to call getColumnMeta on a "strange" query I get a crash.

Reproduce code:
---------------
<?
$conn = new
PDO('pgsql:host=10.1.1.15;port=5432;dbname=zzz;user=xxx;password=yyy');
$stmt = $conn->prepare('SHOW SERVER_ENCODING');
$stmt->execute();
var_dump($stmt->getColumnMeta(0));
?>

Expected result:
----------------
As the documentation says, I would expect the associative array without
the 'driver:decl_type' position.

Actual result:
--------------
Crash

-- 
Edit bug report at http://bugs.php.net/?id=36700&edit=1
-- 
Try a CVS snapshot (PHP 4.4): 
http://bugs.php.net/fix.php?id=36700&r=trysnapshot44
Try a CVS snapshot (PHP 5.1): 
http://bugs.php.net/fix.php?id=36700&r=trysnapshot51
Try a CVS snapshot (PHP 6.0): 
http://bugs.php.net/fix.php?id=36700&r=trysnapshot60
Fixed in CVS:                 http://bugs.php.net/fix.php?id=36700&r=fixedcvs
Fixed in release:             
http://bugs.php.net/fix.php?id=36700&r=alreadyfixed
Need backtrace:               http://bugs.php.net/fix.php?id=36700&r=needtrace
Need Reproduce Script:        http://bugs.php.net/fix.php?id=36700&r=needscript
Try newer version:            http://bugs.php.net/fix.php?id=36700&r=oldversion
Not developer issue:          http://bugs.php.net/fix.php?id=36700&r=support
Expected behavior:            http://bugs.php.net/fix.php?id=36700&r=notwrong
Not enough info:              
http://bugs.php.net/fix.php?id=36700&r=notenoughinfo
Submitted twice:              
http://bugs.php.net/fix.php?id=36700&r=submittedtwice
register_globals:             http://bugs.php.net/fix.php?id=36700&r=globals
PHP 3 support discontinued:   http://bugs.php.net/fix.php?id=36700&r=php3
Daylight Savings:             http://bugs.php.net/fix.php?id=36700&r=dst
IIS Stability:                http://bugs.php.net/fix.php?id=36700&r=isapi
Install GNU Sed:              http://bugs.php.net/fix.php?id=36700&r=gnused
Floating point limitations:   http://bugs.php.net/fix.php?id=36700&r=float
No Zend Extensions:           http://bugs.php.net/fix.php?id=36700&r=nozend
MySQL Configuration Error:    http://bugs.php.net/fix.php?id=36700&r=mysqlcfg

Reply via email to