>  기사  >  백엔드 개발  >  2003server iis6.0 + php5.28+mssql2005联接如上错语

2003server iis6.0 + php5.28+mssql2005联接如上错语

WBOY
WBOY원래의
2016-06-13 11:15:04837검색

2003server iis6.0 + php5.28+mssql2005联接如下错语
arning: odbc_connect() [function.odbc-connect]: SQL error: [Microsoft][ODBC 驱动程序管理器] 未发现数据源名称并且未指定默认驱动程序, SQL state IM002 in SQLConnect in D:\webcome\renrenup.com\newfile.php on line 18


------解决方案--------------------
你 #18 使用 odbc 连接的数据库
怎么又用 mssql 函数操作呢?
....
$sql = "select yop 10 * from W_Member";
$result = odbc_exec($connection, $sql);
while ($row = odbc_fetch_array($result)){     
      print_r($row);
}
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.