ID: 37890 Updated by: [EMAIL PROTECTED] Reported By: krishimeena at yahoo dot com -Status: Open +Status: Feedback Bug Type: MSSQL related Operating System: UNIX PHP Version: 5.1.5CVS New Comment:
Not enough information was provided for us to be able to handle this bug. Please re-read the instructions at http://bugs.php.net/how-to-report.php If you can provide more information, feel free to add it to this bug and change the status back to "Open". Thank you for your interest in PHP. Previous Comments: ------------------------------------------------------------------------ [2006-10-20 15:07:31] frediano dot ziglio at vodafone dot com Which platform are you using? freddy77 ------------------------------------------------------------------------ [2006-06-22 16:54:03] krishimeena at yahoo dot com Description: ------------ We upgraded php4 to php5 and this same listed bug has cropped up. When I query and retrieve a float or REAL datatype with a combination of some varchar 50 datatype I see an error exit bus signal error 10. As soon as I change the sequence of the retrieval of the data it works fine. Please refer to bug #19916, it appears to be the same issue. Reproduce code: --------------- This code does not work: $SQL = "BEGIN SELECT tblfirsttable.varCharData , tblSecondtable.floatData from tblfirsttable, tblSecondtable"; $query_rslt = mssql_query($SQL); $numrows = mssql_num_rows($query_rslt); echo $numrows; However if I swap the retrieval of float value first nad then the varchar it works fine: $SQL = "BEGIN SELECT tblSecondtable.floatData, tblfirsttable.varCharData from tblfirsttable, tblSecondtable"; $query_rslt = mssql_query($SQLl); $numrows = mssql_num_rows($query_rslt); echo $numrows; ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=37890&edit=1
