|
@@ 1927-1932 (lines=6) @@
|
| 1924 |
|
} |
| 1925 |
|
|
| 1926 |
|
# Quote $schema and merge it with the table name if needed |
| 1927 |
|
if ( strlen( $schema ) ) { |
| 1928 |
|
if ( $format == 'quoted' && !$this->isQuotedIdentifier( $schema ) ) { |
| 1929 |
|
$schema = $this->addIdentifierQuotes( $schema ); |
| 1930 |
|
} |
| 1931 |
|
$tableName = $schema . '.' . $tableName; |
| 1932 |
|
} |
| 1933 |
|
|
| 1934 |
|
# Quote $database and merge it with the table name if needed |
| 1935 |
|
if ( $database !== null ) { |
|
@@ 1935-1940 (lines=6) @@
|
| 1932 |
|
} |
| 1933 |
|
|
| 1934 |
|
# Quote $database and merge it with the table name if needed |
| 1935 |
|
if ( $database !== null ) { |
| 1936 |
|
if ( $format == 'quoted' && !$this->isQuotedIdentifier( $database ) ) { |
| 1937 |
|
$database = $this->addIdentifierQuotes( $database ); |
| 1938 |
|
} |
| 1939 |
|
$tableName = $database . '.' . $tableName; |
| 1940 |
|
} |
| 1941 |
|
|
| 1942 |
|
return $tableName; |
| 1943 |
|
} |