>  기사  >  백엔드 개발  >  新手求解一个奇怪的有关问题(php+odbc+access)

新手求解一个奇怪的有关问题(php+odbc+access)

WBOY
WBOY원래의
2016-06-13 13:12:10762검색

新手求解一个奇怪的问题(php+odbc+access)

$constr = "DRIVER={Microsoft Access Driver (*.mdb)};DBQ=" . realpath("ck.mdb"); 
$linkid = odbc_pconnect($constr,"","",SQL_CUR_USE_ODBC);
$sql="select * from cp20113";
$sqlr=odbc_exec($linkid,$sql);
echo odbc_num_rows($sqlr);
?>
返回的结果是-1,而表cp20113中有几十条记录。不知道哪里出错了,昨天弄到大半夜,晕啊,救救我吧?

------解决方案--------------------
odbc_num_rows() will return the number of rows in an ODBC result. This function will return -1 on error. For INSERT, UPDATE and DELETE statements odbc_num_rows() returns the number of rows affected. For a SELECT clause this can be the number of rows available. 

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.