12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?php
-
-
- namespace Doctrine\DBAL\Driver;
-
- use PDO;
-
-
- interface ResultStatement extends \Traversable
- {
-
-
- function closeCursor();
-
-
-
-
- function columnCount();
-
-
-
- function setFetchMode($fetchMode, $arg2 = null, $arg3 = null);
-
-
-
- function fetch($fetchMode = null);
-
-
-
- function fetchAll($fetchMode = null);
-
-
-
- function fetchColumn($columnIndex = 0);
- }
-
|