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