NT IIS下用ODBC连接数据库
2001-02-03 11:42:58 来源:WEB开发网核心提示:$connection = int odbc_connect(string dsn, string user, string passWord)建立数据库连接, $query_string = "查询记录的条件" 如:$query_string = "select * from table
$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()函数是取当前记录的指定字段值。
- ››iis7 下 url重写后原本存在的html不能访问了未能执...
- ››iis将Session值存到数据库中继续运行方法
- ››IIS7 Request format is unrecognized.
- ››IIS Rewrite 配置
- ››IIS7错误:“由于扩展配置问题而无法提供您请求的...
- ››IIS7应用PHP Manager使用FastCGI快速部署
- ››IIS短文件和文件夹泄漏漏洞的分析
- ››IIS .net 网站打不开 http:404 出错
- ››IIS上asp.net网站无法访问(错误:服务器应用程序不...
- ››IIS+PHP配置图文详解
- ››IIS7 下日期显示格式的解决办法
- ››IIS6下部署ASP.NET MVC应用程序
更多精彩
赞助商链接