JDatabaseImporterPostgresql
Extends \JDatabaseImporterPostgreSQL import driver.
since |
3.0.0 |
---|---|
deprecated |
4.0 Use PDO PostgreSQL instead |
package |
Joomla.Platform |
Methods
__construct
Constructor.
__construct()
Sets up the default options for the exporter.
since |
3.2.0 |
---|
asXml
Set the output option for the exporter to XML format.
asXml() : \JDatabaseImporter
check
Checks if all data and options are in order prior to exporting.
check() : \JDatabaseImporter
since |
3.2.0 |
---|---|
throws |
|
Response
\JDatabaseImporter
Method supports chaining.
from
Specifies the data source to import.
from(mixed $from) : \JDatabaseImporter
since |
3.2.0 |
---|
Arguments
- $from
mixed
The data source to import.
Response
\JDatabaseImporter
Method supports chaining.
getAddColumnSql
Get the SQL syntax to add a column.
getAddColumnSql(string $table, \SimpleXMLElement $field) : string
since |
3.0.0 |
---|
Arguments
- $table
string
The table name.- $field
\SimpleXMLElement
The XML field definition.
Response
string
getAddIndexSql
Get the SQL syntax to add an index.
getAddIndexSql(\SimpleXMLElement $field) : string
since |
3.0.0 |
---|
Arguments
- $field
\SimpleXMLElement
The XML index definition.
Response
string
getAddSequenceSql
Get the syntax to add a sequence.
getAddSequenceSql(\SimpleXMLElement $field) : string
since |
3.0.0 |
---|
Arguments
- $field
\SimpleXMLElement
The XML definition for the sequence.
Response
string
getAlterColumnSql
Get the SQL syntax for a single column that would be included in a table create statement.
getAlterColumnSql(string $table, \SimpleXMLElement $field) : string
since |
3.0.0 |
---|
Arguments
- $table
string
The name of the database table to alter.- $field
\SimpleXMLElement
The XML field definition.
Response
string
getAlterTableSql
Get alters for table if there is a difference.
getAlterTableSql(\SimpleXMLElement $structure) : array
since |
3.0.0 |
---|
Arguments
- $structure
\SimpleXMLElement
The XML structure of the table.
Response
array
getChangeColumnSql
Get the syntax to alter a column.
getChangeColumnSql(string $table, \SimpleXMLElement $field) : string
since |
3.0.0 |
---|
Arguments
- $table
string
The name of the database table to alter.- $field
\SimpleXMLElement
The XML definition for the field.
Response
string
getChangeSequenceSql
Get the syntax to alter a sequence.
getChangeSequenceSql(\SimpleXMLElement $field) : string
since |
3.0.0 |
---|
Arguments
- $field
\SimpleXMLElement
The XML definition for the sequence.
Response
string
getColumnSql
Get the SQL syntax for a single column that would be included in a table create statement.
getColumnSql(\SimpleXMLElement $field) : string
since |
3.0.0 |
---|
Arguments
- $field
\SimpleXMLElement
The XML field definition.
Response
string
getDropColumnSql
Get the SQL syntax to drop a column.
getDropColumnSql(string $table, string $name) : string
since |
3.2.0 |
---|
Arguments
- $table
string
The table name.- $name
string
The name of the field to drop.
Response
string
getDropIndexSql
Get the SQL syntax to drop an index.
getDropIndexSql(string $name) : string
since |
3.0.0 |
---|
Arguments
- $name
string
The name of the key to drop.
Response
string
getDropPrimaryKeySql
Get the SQL syntax to drop a key.
getDropPrimaryKeySql(string $table, string $name) : string
since |
3.0.0 |
---|
Arguments
- $table
string
The table name.- $name
string
The constraint name.
Response
string
getDropSequenceSql
Get the SQL syntax to drop a sequence.
getDropSequenceSql(string $name) : string
since |
3.0.0 |
---|
Arguments
- $name
string
The name of the sequence to drop.
Response
string
getIdxLookup
Get the details list of keys for a table.
getIdxLookup(array $keys) : array
since |
3.0.0 |
---|---|
throws |
|
Arguments
- $keys
array
An array of objects that comprise the keys for the table.
Response
array
The lookup array. array({key name} => array(object, ...))
getRealTableName
Get the real name of the table, converting the prefix wildcard string if present.
getRealTableName(string $table) : string
since |
3.2.0 |
---|
Arguments
- $table
string
The name of the table.
Response
string
The real name of the table.
getSeqLookup
Get the details list of sequences for a table.
getSeqLookup(array $sequences) : array
since |
3.0.0 |
---|---|
throws |
|
Arguments
- $sequences
array
An array of objects that comprise the sequences for the table.
Response
array
The lookup array. array({key name} => array(object, ...))
mergeStructure
Merges the incoming structure definition with the existing structure.
mergeStructure() : void
note |
Currently only supports XML format. |
---|---|
since |
3.2.0 |
throws |
|
setDbo
Sets the database connector to use for exporting structure and/or data.
setDbo(\JDatabaseDriver $db) : \JDatabaseImporter
since |
3.2.0 |
---|
Arguments
- $db
\JDatabaseDriver
The database connector.
Response
\JDatabaseImporter
Method supports chaining.
withStructure
Sets an internal option to merge the structure based on the input data.
withStructure(boolean $setting = true) : \JDatabaseImporter
since |
3.2.0 |
---|
Arguments
- $setting
boolean
True to export the structure, false to not.
Response
\JDatabaseImporter
Method supports chaining.
Properties
cache
An array of cached data.
since |
3.2.0 |
---|
Type(s)
array
db
The database connector to use for exporting structure and/or data.
from
The input source.
since |
3.2.0 |
---|
Type(s)
mixed
asFormat
The type of input format (XML).
since |
3.2.0 |
---|
Type(s)
string
options
An array of options for the exporter.
since |
3.2.0 |
---|
Type(s)
object