1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-21 13:51:33 +02:00

Add seek() to Min_PDOStatement for mssql.

Signed-off-by: Takashi SHIRAI <shirai@nintendo.co.jp>
This commit is contained in:
Takashi SHIRAI
2023-06-22 15:45:42 +09:00
committed by Jakub Vrana
parent 4de6e47c0a
commit 15cd83fc39
2 changed files with 7 additions and 0 deletions

View File

@@ -98,5 +98,11 @@ if (extension_loaded('pdo')) {
$row->charsetnr = (in_array("blob", (array) $row->flags) ? 63 : 0);
return $row;
}
function seek($offset) {
for ($i=0; $i < $offset; $i++) {
$this->fetch();
}
}
}
}