NT IIS下用ODBC连接数据库
程序员文章站
2022-03-14 09:06:24
$connection = int odbc_connect(string dsn, string user, string password)建立数据库连接, $quer...
$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()函数是取当前记录的指定字段值。
上一篇: 系统类和数学操作类
下一篇: PHP4实际应用经验篇(7)
推荐阅读
-
IIS下PHP连接数据库提示mysql undefined function mysql_connect()
-
用PHP连接Oracle for NT 远程数据库
-
如何将对数据库两个表的操作处于用一个事物下?同一个连接对象+事物拦截
-
IIS7下使用ASP.NET连接ACCESS数据库时提示如下错误的解决方法
-
NT IIS下用ODBC连接数据库
-
Linux下用OCCI或OCI连接Oracle数据库
-
用PHP连接Oracle for NT 远程数据库_php基础
-
IIS下PHP连接数据库提示mysql undefined function mysql_connect()
-
IIS下PHP连接数据库提示mysql undefined function mysql_connect()
-
Ubuntu下使用ODBC连接MSSQL或SYBASE数据库