欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

php mssql数据库连接代码

程序员文章站 2022-05-17 14:08:41
...
$conn=ADONewConnection('odbc_mssql'); 
$conn->PConnect("Driver={SQL Server};Server=DLUT-PCSQLEXPRESS;Database=yuyan;",'zhouhao','950288'); 
$ADODB_FETCH_MODE=ADODB_FETCH_ASSOC; 
$sqlstr='select * from yuyan where ps教程nNo=?'; 
$rst=$conn->execute($sqlstr,'005') or die('connect error'); 
while(!$rst->EOF) 
{ 
//echo $rst->fields['psnName'].'->'.$rst->fields['www.phprm.com'].''; 
echo 'dajiahao'; 
$rst->movenext(); 
} 
$rst->close(); 
$conn->close();