|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2008-03-25 11:04 UTC] felipe@php.net
[2008-07-21 12:08 UTC] pajoye@php.net
[2008-07-22 12:54 UTC] clark dot ryan at gmail dot com
[2008-10-26 23:22 UTC] jani@php.net
[2008-11-03 01:00 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 15 13:00:01 2025 UTC |
Description: ------------ sybase_fetch_field is consistently returning me a NULL value for column_source. Reproduce code: --------------- $conn = @sybase_pconnect('server','user','pass'); $query = "SELECT * FROM Products WHERE productID = 1"; $rs = sybase_query($query); $row = sybase_fetch_field($rs); echo '<pre>'; print_r($row); echo '</pre>'; Expected result: ---------------- stdClass Object ( [name] => productID [max_length] => 11 [column_source] => 'Products' [numeric] => 1 [type] => int ) Actual result: -------------- stdClass Object ( [name] => productID [max_length] => 11 [column_source] => [numeric] => 1 [type] => int )