Linux サーバーで実行されている以下の PHP ドキュメントを使用しています。
<?
/*
** Connect to database:
*/
// Connect to the database (host, username, password)
$con = sqlsrv_connect('XXXXXX','XXXXX','XXXXXX')
or die('Could not connect to the server!');
// Select a database:
mssql_select_db('Quotes_SQL')
or die('Could not select a database.');
// Example query: (TOP 10 equal LIMIT 0,10 in MySQL)
$SQL = "SELECT TOP 10 * FROM FederalStockCards ORDER BY ID ASC";
// Execute query:
$result = mssql_query($SQL)
or die('A error occured: ' . mysql_error());
// Get result count:
$Count = mssql_num_rows($result);
print "Showing $count rows:<hr/>\n\n";
// Fetch rows:
while ($Row = mssql_fetch_assoc($result)) {
print $Row['Fieldname'] . "\n";
}
mssql_close($con);
?>
ただし、次の場所にアクセスして PHP ファイルを実行した後: http://cinicraft.com/Silverman/mssql.php
次の出力が表示されます。
\n\n"; // 行のフェッチ: while ($Row = mssql_fetch_assoc($result)) { print $Row['Fieldname'] . "\n"; } mssql_close($con); ?>
どうすればよいかよくわかりませんが、この出力は MSSQL サーバーによって返されていますか?