我是相当新的SQL-Server和PHP,但我试图让我在使用PHP表行的总数。
这是我使用的代码,它连接就好了,但是它不会打印行数:
<?php
$serverName = "SERVER1\SQLEXPRESS";
$connectionInfo = array( "Database"=>"petitionlist");
$conn = sqlsrv_connect( $serverName, $connectionInfo);
if( $conn === false )
{
?>
<b>Error: </b>Could not connect to the server database.
<?php
die( print_r( sqlsrv_errors(), true));
}
$tsql = "Select Count(*) from SignatureTable";
$stmt = sqlsrv_query( $conn, $tsql);
if( $stmt === false )
{
?>
<b>Error: </b>
<?php
die( print_r( sqlsrv_errors(), true));
}
?>
<b>Result:</b><br />
<?php
print_r(sqlsrv_fetch_object($stmt));
sqlsrv_free_stmt( $stmt);
sqlsrv_close( $conn);
?>
如果我“从SignatureTable SELECT COUNT(*)”命令上的SQL Server Studio中执行它返回正确的号码。 因此,这不是我的服务器,这是我的代码。