|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-06-21 08:57 UTC] ssufficool@php.net
-Status: Open
+Status: Duplicate
-Package: Feature/Change Request
+Package: *General Issues
[2010-06-21 08:57 UTC] ssufficool@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 22:00:01 2025 UTC |
Description: ------------ The PDO getColumnMeta does not return all of the attributes that the mssql_* functions return using FreeTDS or DBLIB. Reproduce code: --------------- <?php $select = $DB->query('SELECT fruit_name FROM fruit'); $meta = $select->getColumnMeta(0); var_dump($meta); ?> Expected result: ---------------- the proper length, not -1 and type of the character field along with other attributes provided by mssql_field_* functions Actual result: -------------- field length of -1 along with other invalid/unknown attributes