odbc_fetch_into分页问题

WBOY
Release: 2016-06-23 14:21:37
Original
1115 people have browsed it

odbc_fetch_into access odbc 分页

我用odbc_fetch_into实现了一个分页功能,但是odbc_fetch_into获取的row是一个数字数组,我想得到一个关联数组,应该怎么做呢?或者有没有其他的更好的分页方法

我用的是access数据库

回复讨论(解决方案)

分页可以用 ADODB.RecordSet 组件,当然连接要用 ADODB.Connection 组件

不利用组件时,应使用 SQL 指令只取出需要的一段

你现在是取得全部结果后,再字节截取一段。这个做法是不可取的,太浪费资源了

分页可以用 ADODB.RecordSet 组件,当然连接要用 ADODB.Connection 组件

不利用组件时,应使用 SQL 指令只取出需要的一段

你现在是取得全部结果后,再字节截取一段。这个做法是不可取的,太浪费资源了 多谢提示

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template