|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-06-30 15:34 UTC] fmk@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 08:00:01 2025 UTC |
OS = Windows 2000 Server = IIS 5.0 Database = SQL Server 7 PHP = 4.0.5 To reproduce 1. Create a table as such: CREATE TABLE table1 ( row_id NUMERIC(9,0) IDENTITY, col1 INT NOT NULL, col2 INT NULL, col3 VARCHAR(25) NULL, PRIMARY KEY(row_id) ) GO 2. Insert a row: INSERT INTO table1 (col1) VALUES(1) GO 3. Now fetch that row <?php $hostname = "<your hostname here>"; $username = "<your username here>"; $password = "<your password here>"; $dbName = "<your database name here>"; // Connect $connectionID = mssql_connect($hostname, $username, $password); $retval = mssql_select_db($dbName); // Query $query = "SELECT row_id, col1, col2, col3 from table1" $queryID = mssql_query($query, $connectionID) // Fetch fields $fields = mssql_fetch_array($queryID); list($row_id, $col1, $col2, $col3) = $fields; echo "type = " . gettype($row_id) . "<br>"; echo "strlen(\$row_id) = " . strlen($row_id) . "<br>"; echo bin2hex($row_id) . "<br>"; mssql_close($connectionID); ?> 3. Results Did yours match mine? My result from bin2hex is 310000000000000000000000000000000000000000 The character 1, followed by 19 nulls!