Table of Contents
回复讨论(解决方案)
Home Backend Development PHP Tutorial PDO怎样将结果集指针移动到指定的记录位置上啊

PDO怎样将结果集指针移动到指定的记录位置上啊

Jun 23, 2016 pm 02:13 PM

mysql内置函数mysql_data_seek可以将指针移到指定的记录位置,PDO有没有提供类似功能的函数呢,因为我想用这个做分页程序,我查了一下PDO中有个FETCH_ORI_ABS的函数,好像说它也能移动指针,但我不知道具体怎样用哦。


回复讨论(解决方案)

http://www.sitepoint.com/forums/showthread.php?709890-Equivalent-of-mysqli_data_seek-in-PDO
郁闷,这篇帖子说这是不可能的。
难道我下面的分页程序就真的没法实现了
 /*连接数据库*/
$dsn="mysql:host=localhost;dbname=guestbook";
$db=new PDO($dsn,'root','111'); //连接数据库
$db->query('set names gb2312');  //设置字符集
if(isset($_GET['page']) && (int)$_GET['page']>0)  //获取页码
$Page=$_GET['page'];
else
$Page=1;
//设置每页显示记录数
$PageSize=4; 
$keyword=trim($_GET['keyword']);

if ($keyword  "")
{
$sql="select * from lyb where title like '%?%'";
$result=$db_prepare($sql);  //创建结果集
$result->bindParam(1,$keyword);

}
else $result=$db->prepare("select * from lyb",array(PDO::ATTR_CURSOR => PDO::CURSOR_SCROLL)); 
 $result->execute();
$RecordCount=$result->rowCount();

 $PageCount =ceil($RecordCount/$PageSize);
 
?>



 
 
查找留言:请输入关键字 
  



  
      
     
  
     
$Pos=($Page-1)*$PageSize;

  for($i=0;$i   $row=$result->fetch(PDO::FETCH_ASSOC,PDO::FETCH_ORI_ABS,$Pos);
 if($row){
 ?>
   
     
    
   }
  $Pos++;
  } ?>
标题内容作者 email来自
= $row['title'];?>= $row['content'];?> = $row['author'];?>= $row['email'];?> = $row['ip'];?>

// 显示分页链接
if($Page== 1)
        echo  "第一页 ";
else  echo  " 第一页 ";
if($Page==1)   // 设置“上一页”链接
        echo  " 上一页 ";
    else echo  " 上一页 ";
for($i=1;$i  if ($i==$Page) echo "$i  ";
else echo " $i ";} 
if($Page== $PageCount)    // 设置“下一页”链接
        echo  " 下一页 ";
    else echo  " 下一页 ";
  if($Page == $PageCount) //设置“最后一页”链接
        echo  " 末页 ";
    else echo  " 末页 ";
echo "   共".$RecordCount. "条记录 ";  //共多少条记录
echo " $Page/$PageCount 页"; //当前页的位置
?>



对于支持 LIMIT 子句的数据库,比如 mysql、sqlite 等可用 limit 起始,长度 分页
对于不支持 LIMIT 子句的数据库,比如 mssql、oracle 等可结合 ROWNUM、RN 完成分页
据说高版本的 mysql 也支持 ROWNUM、RN 了,那么分页代码就可简化许多了

就你的代码而言
$result->execute(); 是查询所有符合条件的记录
$row=$result->fetch(PDO::FETCH_ASSOC,PDO::FETCH_ORI_ABS,$Pos); 是获取其中一条,于是就要在循环里执行
你完全可以
$rows = $result->fetchall(PDO::FETCH_ASSOC,PDO::FETCH_ORI_ABS,$Pos);
全部取出,并
$rows = array_chunk($rows, $PageSize);
按每页行数切割成数组 ,再
foreach($rows[$Page-1] as $row) {
  //输出内容
}

问题是这句获取不到其中一条,获得的总是第一条,也就是说PDO::FETCH_ORI_ABS,$Pos根本没起作用。

$row=$result->fetch(PDO::FETCH_ASSOC,PDO::FETCH_ORI_ABS,$Pos); 

我知道用limit子句进行分页了,但我想换种方法分页,我喜欢把所有记录都读入结果集中再分页,这样对小的结果集来说速度快些。

同一页你的 $Pos 一直没变。

  $row=$result->fetch(PDO::FETCH_ASSOC,PDO::FETCH_ORI_ABS,$Pos+$i);

同一页你的 $Pos 一直没变。

  $row=$result->fetch(PDO::FETCH_ASSOC,PDO::FETCH_ORI_ABS,$Pos+$i); 

您看错了,我输出完一条后有一个$Pos++;

问题是 我把 $row=$result->fetch(PDO::FETCH_ASSOC,PDO::FETCH_ORI_ABS,$Pos);
改成
 $row=$result->fetch();
结果完全是一样的,FETCH_ORI_ABS,$Pos完全没起作用

PDO::FETCH_ORI_ABS,$Pos 生效是有条件的

$result->fetchall() 比较好

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel Tests Simplified HTTP Response Mocking in Laravel Tests Mar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log Analysis PHP Logging: Best Practices for PHP Log Analysis Mar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Discover File Downloads in Laravel with Storage::download Discover File Downloads in Laravel with Storage::download Mar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

HTTP Method Verification in Laravel HTTP Method Verification in Laravel Mar 05, 2025 pm 04:14 PM

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

See all articles