| @@ 446-459 (lines=14) @@ | ||
| 443 | ); |
|
| 444 | } |
|
| 445 | ||
| 446 | public function alterTable( |
|
| 447 | $table, |
|
| 448 | $newFields = null, |
|
| 449 | $newIndexes = null, |
|
| 450 | $alteredFields = null, |
|
| 451 | $alteredIndexes = null, |
|
| 452 | $alteredOptions = null, |
|
| 453 | $advancedOptions = null |
|
| 454 | ) { |
|
| 455 | return call_user_func_array( |
|
| 456 | array($this->realConn, __FUNCTION__), |
|
| 457 | func_get_args() |
|
| 458 | ); |
|
| 459 | } |
|
| 460 | ||
| 461 | public function comparisonClause( |
|
| 462 | $field, |
|
| @@ 461-473 (lines=13) @@ | ||
| 458 | ); |
|
| 459 | } |
|
| 460 | ||
| 461 | public function comparisonClause( |
|
| 462 | $field, |
|
| 463 | $value, |
|
| 464 | $exact = false, |
|
| 465 | $negate = false, |
|
| 466 | $caseSensitive = false, |
|
| 467 | $parameterised = false |
|
| 468 | ) { |
|
| 469 | return call_user_func_array( |
|
| 470 | array($this->realConn, __FUNCTION__), |
|
| 471 | func_get_args() |
|
| 472 | ); |
|
| 473 | } |
|
| 474 | ||
| 475 | public function createDatabase() |
|
| 476 | { |
|
| @@ 491-502 (lines=12) @@ | ||
| 488 | ); |
|
| 489 | } |
|
| 490 | ||
| 491 | public function createTable( |
|
| 492 | $table, |
|
| 493 | $fields = null, |
|
| 494 | $indexes = null, |
|
| 495 | $options = null, |
|
| 496 | $advancedOptions = null |
|
| 497 | ) { |
|
| 498 | return call_user_func_array( |
|
| 499 | array($this->realConn, __FUNCTION__), |
|
| 500 | func_get_args() |
|
| 501 | ); |
|
| 502 | } |
|
| 503 | ||
| 504 | public function datetimeDifferenceClause($date1, $date2) |
|
| 505 | { |
|