$connection = int odbc_connect(string dsn, string user, string password)建立数据库连接,
$query_string = "查询记录的条件"
如:$query_string = "select * from table"
用$cur = int odbc_exec(int connection_id, string query_string)检索数据库,将记录集放入$cur变量中。
再用while (odbc_fetch_row($cur)){
$var1=odbc_result($cur,1);
$var2=odbc_result($cur,1);
...
}
读取odbc_exec()返回的数据集$cur。
最后是odbc_close(int connection_id)关闭数据库的连接。
odbc_result()函数是取当前记录的指定字段值。
$query_string = "查询记录的条件"
如:$query_string = "select * from table"
用$cur = int odbc_exec(int connection_id, string query_string)检索数据库,将记录集放入$cur变量中。
再用while (odbc_fetch_row($cur)){
$var1=odbc_result($cur,1);
$var2=odbc_result($cur,1);
...
}
读取odbc_exec()返回的数据集$cur。
最后是odbc_close(int connection_id)关闭数据库的连接。
odbc_result()函数是取当前记录的指定字段值。
版权声明:
本站所有资源均为站长或网友整理自互联网或站长购买自互联网,站长无法分辨资源版权出自何处,所以不承担任何版权以及其他问题带来的法律责任,如有侵权或者其他问题请联系站长删除!站长QQ754403226 谢谢。
- 上一篇: 怎样在UNIX系统下安装php3
- 下一篇: 支持oicq头像的留言簿(一)