@@ 417-423 (lines=7) @@ | ||
414 | /** |
|
415 | * {@inheritDoc} |
|
416 | */ |
|
417 | public function getListTableColumnsSQL($table, $currentDatabase = null) |
|
418 | { |
|
419 | $table = str_replace('.', '__', $table); |
|
420 | $table = $this->quoteStringLiteral($table); |
|
421 | ||
422 | return "PRAGMA table_info($table)"; |
|
423 | } |
|
424 | ||
425 | /** |
|
426 | * {@inheritDoc} |
|
@@ 428-434 (lines=7) @@ | ||
425 | /** |
|
426 | * {@inheritDoc} |
|
427 | */ |
|
428 | public function getListTableIndexesSQL($table, $currentDatabase = null) |
|
429 | { |
|
430 | $table = str_replace('.', '__', $table); |
|
431 | $table = $this->quoteStringLiteral($table); |
|
432 | ||
433 | return "PRAGMA index_list($table)"; |
|
434 | } |
|
435 | ||
436 | /** |
|
437 | * {@inheritDoc} |
|
@@ 778-784 (lines=7) @@ | ||
775 | /** |
|
776 | * {@inheritDoc} |
|
777 | */ |
|
778 | public function getListTableForeignKeysSQL($table, $database = null) |
|
779 | { |
|
780 | $table = str_replace('.', '__', $table); |
|
781 | $table = $this->quoteStringLiteral($table); |
|
782 | ||
783 | return "PRAGMA foreign_key_list($table)"; |
|
784 | } |
|
785 | ||
786 | /** |
|
787 | * {@inheritDoc} |