system/database/drivers/cubrid/cubrid_driver.php 1 location
|
@@ 383-391 (lines=9) @@
|
| 380 |
|
* |
| 381 |
|
* @return string |
| 382 |
|
*/ |
| 383 |
|
protected function _from_tables() |
| 384 |
|
{ |
| 385 |
|
if ( ! empty($this->qb_join) && count($this->qb_from) > 1) |
| 386 |
|
{ |
| 387 |
|
return '('.implode(', ', $this->qb_from).')'; |
| 388 |
|
} |
| 389 |
|
|
| 390 |
|
return implode(', ', $this->qb_from); |
| 391 |
|
} |
| 392 |
|
|
| 393 |
|
// -------------------------------------------------------------------- |
| 394 |
|
|
system/database/drivers/pdo/subdrivers/pdo_cubrid_driver.php 1 location
|
@@ 240-248 (lines=9) @@
|
| 237 |
|
* |
| 238 |
|
* @return string |
| 239 |
|
*/ |
| 240 |
|
protected function _from_tables() |
| 241 |
|
{ |
| 242 |
|
if ( ! empty($this->qb_join) && count($this->qb_from) > 1) |
| 243 |
|
{ |
| 244 |
|
return '('.implode(', ', $this->qb_from).')'; |
| 245 |
|
} |
| 246 |
|
|
| 247 |
|
return implode(', ', $this->qb_from); |
| 248 |
|
} |
| 249 |
|
|
| 250 |
|
} |
| 251 |
|
|
system/database/drivers/mysql/mysql_driver.php 1 location
|
@@ 469-477 (lines=9) @@
|
| 466 |
|
* |
| 467 |
|
* @return string |
| 468 |
|
*/ |
| 469 |
|
protected function _from_tables() |
| 470 |
|
{ |
| 471 |
|
if ( ! empty($this->qb_join) && count($this->qb_from) > 1) |
| 472 |
|
{ |
| 473 |
|
return '('.implode(', ', $this->qb_from).')'; |
| 474 |
|
} |
| 475 |
|
|
| 476 |
|
return implode(', ', $this->qb_from); |
| 477 |
|
} |
| 478 |
|
|
| 479 |
|
// -------------------------------------------------------------------- |
| 480 |
|
|
system/database/drivers/mysqli/mysqli_driver.php 1 location
|
@@ 522-530 (lines=9) @@
|
| 519 |
|
* |
| 520 |
|
* @return string |
| 521 |
|
*/ |
| 522 |
|
protected function _from_tables() |
| 523 |
|
{ |
| 524 |
|
if ( ! empty($this->qb_join) && count($this->qb_from) > 1) |
| 525 |
|
{ |
| 526 |
|
return '('.implode(', ', $this->qb_from).')'; |
| 527 |
|
} |
| 528 |
|
|
| 529 |
|
return implode(', ', $this->qb_from); |
| 530 |
|
} |
| 531 |
|
|
| 532 |
|
// -------------------------------------------------------------------- |
| 533 |
|
|
system/database/drivers/pdo/subdrivers/pdo_mysql_driver.php 1 location
|
@@ 326-334 (lines=9) @@
|
| 323 |
|
* |
| 324 |
|
* @return string |
| 325 |
|
*/ |
| 326 |
|
protected function _from_tables() |
| 327 |
|
{ |
| 328 |
|
if ( ! empty($this->qb_join) && count($this->qb_from) > 1) |
| 329 |
|
{ |
| 330 |
|
return '('.implode(', ', $this->qb_from).')'; |
| 331 |
|
} |
| 332 |
|
|
| 333 |
|
return implode(', ', $this->qb_from); |
| 334 |
|
} |
| 335 |
|
|
| 336 |
|
} |
| 337 |
|
|