|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-12-24 11:44 UTC] james at brendata dot co dot uk
[2004-12-24 12:08 UTC] derick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 14 19:00:01 2025 UTC |
Description: ------------ Only a limit of 30 characters on a column name, regardless of how long the column name is. We are using the column names as a way of passing data. Reproduce code: --------------- <?php $msconnect=mssql_connect("hostname","username","password"); mssql_select_db("any db",$msconnect); $sql = <<<EOT select 1 as a23456789012345678901234567890123456789 from syscolumns EOT; $msresults=mssql_query($sql); $row = mssql_fetch_array($msresults, MSSQL_ASSOC); print_r($row); ?> Expected result: ---------------- Array ( [a23456789012345678901234567890123456789] => 1 ) Actual result: -------------- Array ( [a23456789012345678901234567890] => 1 )