| 1 | <?php |
||
| 22 | class SQLServerResult extends PDOResult |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * Helper column used to create limit, offset statements in older versions of sql server. |
||
| 26 | */ |
||
| 27 | const ROW_NUMBER_COLUMN = 'spiral_row_number'; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * {@inheritdoc} |
||
| 31 | */ |
||
| 32 | public function columnCount() |
||
| 36 | |||
| 37 | /** |
||
| 38 | * {@inheritdoc} |
||
| 39 | */ |
||
| 40 | public function fetch( |
||
| 58 | |||
| 59 | /** |
||
| 60 | * Provides support for old SQLServer versions. |
||
| 61 | * |
||
| 62 | * @return bool |
||
| 63 | */ |
||
| 64 | private function hasHelpColumn() |
||
| 68 | } |
||
| 69 |