phpgwapi/inc/adodb/drivers/adodb-sqlite.inc.php 1 location
|
@@ 314-322 (lines=9) @@
|
| 311 |
|
|
| 312 |
|
$this->_inited = true; |
| 313 |
|
$this->fields = array(); |
| 314 |
|
if ($queryID) { |
| 315 |
|
$this->_currentRow = 0; |
| 316 |
|
$this->EOF = !$this->_fetch(); |
| 317 |
|
@$this->_initrs(); |
| 318 |
|
} else { |
| 319 |
|
$this->_numOfRows = 0; |
| 320 |
|
$this->_numOfFields = 0; |
| 321 |
|
$this->EOF = true; |
| 322 |
|
} |
| 323 |
|
|
| 324 |
|
return $this->_queryID; |
| 325 |
|
} |
phpgwapi/inc/adodb/drivers/adodb-oracle.inc.php 1 location
|
@@ 233-241 (lines=9) @@
|
| 230 |
|
|
| 231 |
|
$this->_inited = true; |
| 232 |
|
$this->fields = array(); |
| 233 |
|
if ($queryID) { |
| 234 |
|
$this->_currentRow = 0; |
| 235 |
|
$this->EOF = !$this->_fetch(); |
| 236 |
|
@$this->_initrs(); |
| 237 |
|
} else { |
| 238 |
|
$this->_numOfRows = 0; |
| 239 |
|
$this->_numOfFields = 0; |
| 240 |
|
$this->EOF = true; |
| 241 |
|
} |
| 242 |
|
|
| 243 |
|
return $this->_queryID; |
| 244 |
|
} |