我使用ODBC连接sql server 2008,如
$virtual_dsn = 'DRIVER={SQL Server};SERVER=MyServerName;DATABASE=myDatabase';
$conn = odbc_connect($virtual_dsn,'sa','mypass') or die('ODBC Error:: '.odbc_error().' :: '.odbc_errormsg().' :: '.$virtual_dsn);
if (!$conn){
if (phpversion() < '4.0'){
exit("Connection Failed: . $php_errormsg" );
}
else{
exit("Connection Failed:" . odbc_errormsg() );
}
}
// This query generates a result set with one record in it.
$sql="SELECT TOP 10 * FROM Mytable";
# Execute the statement.
$rs=odbc_exec($conn,$sql);
// Fetch and display the result set value.
if (!$rs){
exit("Error in SQL");
}
while (odbc_fetch_row($rs)){
$col1=odbc_result($rs, "name");
echo "$col1 <br>";
}
// Disconnect the database from the database handle.
odbc_close($conn);
但我得到的文字不正确
b?�o c?�o việc sử dụng
我尝试使用odbc_exec($conn, "SET names utf8");
但得到错误
Warning: odbc_exec(): SQL error: [Microsoft][SQL Server Native Client 10.0][SQL Server]'names' is not a recognized SET option., SQL state 37000 in SQLExecDirect in C:\xampp\htdocs\sql\index.php on line 32
如何使用odbc_connect感谢
设置utf-8答案 0 :(得分:2)
odbc_exec 不接受&#39;设置名称utf8&#39;作为第二个参数。第二个参数必须是查询。
仅为变量设置utf8 使用utf8_decode或iconv
$col1=utf8_decode(odbc_result($rs, "name"));
或
$col1=odbc_result($rs, "name");
iconv("UTF-8", "CP1252", $col1);
和
警告:odbc_exec():SQL错误:[Microsoft] [SQL Server Native Client 10.0] [SQL Server]&#39;名称&#39;不是可识别的SET选项。,第32行的C:\ xampp \ htdocs \ sql \ index.php中的SQLExecDirect中的SQL状态37000
这不是错误,是警告。但请查看odbc_exec手册以确保全部。