JDatabaseDriver
Implements interfaces:
Joomla Platform Database Driver Class
Located in /libraries/joomla/database/driver.php (line 43)
JDatabase
![]()
JDatabaseDriver (Subpackage Database)
| Class | Description |
|---|---|
JDatabaseDriverSqlsrv
|
SQL Server database driver |
JDatabaseDriverPdo
|
Joomla Platform PDO Database Driver Class |
JDatabaseDriverMysql
|
MySQL database driver |
JDatabaseDriverPostgresql
|
PostgreSQL database driver |
JDatabaseDriver
renameTable
(string $oldTable, string $newTable, [string $backup = null], [string $prefix = null])
resource
$connection
(line 65)
integer
$count
= 0 (line 71)
resource
$cursor
(line 77)
boolean
$debug
= false (line 83)
string
$errorMsg
(line 155)
integer
$errorNum
= 0 (line 148)
array
$instances
= array() (line 161)
integer
$limit
= 0 (line 89)
array
$log
= array() (line 95)
string
$name
(line 59)
The name of the database driver.
- JDatabaseDriverSqlsrv::$name : The name of the database driver.
- JDatabaseDriverSqlazure::$name : The name of the database driver.
- JDatabaseDriverPdo::$name : The name of the database driver.
- JDatabaseDriverOracle::$name : The name of the database driver.
- JDatabaseDriverSqlite::$name : The name of the database driver.
- JDatabaseDriverMysql::$name : The name of the database driver.
- JDatabaseDriverMysqli::$name : The name of the database driver.
- JDatabaseDriverPostgresql::$name : The database driver name
string
$nameQuote
(line 104)
- JDatabaseDriverSqlsrv::$nameQuote : The character(s) used to quote SQL statement names such as table names or field names, etc. The child classes should define this as necessary. If a single character string the same character is used for both sides of the quoted name, else the first character will be used for the opening quote and the second for the closing quote.
- JDatabaseDriverPdo::$nameQuote : The character(s) used to quote SQL statement names such as table names or field names, etc. The child classes should define this as necessary. If a single character string the same character is used for both sides of the quoted name, else the first character will be used for the opening quote and the second for the closing quote.
- JDatabaseDriverSqlite::$nameQuote : The character(s) used to quote SQL statement names such as table names or field names, etc. The child classes should define this as necessary. If a single character string the same character is used for both sides of the quoted name, else the first character will be used for the opening quote and the second for the closing quote.
- JDatabaseDriverMysql::$nameQuote : The character(s) used to quote SQL statement names such as table names or field names, etc. The child classes should define this as necessary. If a single character string the same character is used for both sides of the quoted name, else the first character will be used for the opening quote and the second for the closing quote.
- JDatabaseDriverPostgresql::$nameQuote : Quote for named objects
string
$nullDate
(line 111)
- JDatabaseDriverSqlsrv::$nullDate : The null or zero representation of a timestamp for the database driver. This should be defined in child classes to hold the appropriate value for the engine.
- JDatabaseDriverPdo::$nullDate : The null or zero representation of a timestamp for the database driver. This should be defined in child classes to hold the appropriate value for the engine.
- JDatabaseDriverMysql::$nullDate : The null or zero representation of a timestamp for the database driver. This should be defined in child classes to hold the appropriate value for the engine.
- JDatabaseDriverPostgresql::$nullDate : The null/zero date string
integer
$offset
= 0 (line 117)
array
$options
(line 123)
mixed
$sql
(line 129)
string
$tablePrefix
(line 135)
boolean
$utf
= true (line 141)
Constructor.
- array $options: List of options used to configure the connection
- JDatabaseDriverSqlsrv::__construct() : Constructor.
- JDatabaseDriverPdo::__construct() : Constructor.
- JDatabaseDriverOracle::__construct() : Constructor.
- JDatabaseDriverSqlite::__construct() : Constructor.
- JDatabaseDriverMysql::__construct() : Constructor.
- JDatabaseDriverMysqli::__construct() : Constructor.
- JDatabaseDriverPostgresql::__construct() : Database object constructor
Connects to the database if needed.
- JDatabaseDriverSqlsrv::connect() : Connects to the database if needed.
- JDatabaseDriverPdo::connect() : Connects to the database if needed.
- JDatabaseDriverOracle::connect() : Connects to the database if needed.
- JDatabaseDriverMysql::connect() : Connects to the database if needed.
- JDatabaseDriverMysqli::connect() : Connects to the database if needed.
- JDatabaseDriverPostgresql::connect() : Connects to the database if needed.
Determines if the connection to the server is active.
- JDatabaseDriverSqlsrv::connected() : Determines if the connection to the server is active.
- JDatabaseDriverPdo::connected() : Determines if the connection to the server is active.
- JDatabaseDriverMysql::connected() : Determines if the connection to the server is active.
- JDatabaseDriverMysqli::connected() : Determines if the connection to the server is active.
- JDatabaseDriverPostgresql::connected() : Determines if the connection to the server is active.
Disconnects the database.
- JDatabaseDriverSqlsrv::disconnect() : Disconnects the database.
- JDatabaseDriverPdo::disconnect() : Disconnects the database.
- JDatabaseDriverOracle::disconnect() : Disconnects the database.
- JDatabaseDriverSqlite::disconnect() : Disconnects the database.
- JDatabaseDriverMysql::disconnect() : Disconnects the database.
- JDatabaseDriverMysqli::disconnect() : Disconnects the database.
- JDatabaseDriverPostgresql::disconnect() : Disconnects the database.
Drops a table from the database.
- string $table: The name of the database table to drop.
- boolean $ifExists: Optionally specify that the table must exist before it is dropped.
- JDatabaseDriverSqlsrv::dropTable() : Drops a table from the database.
- JDatabaseDriverOracle::dropTable() : Drops a table from the database.
- JDatabaseDriverSqlite::dropTable() : Drops a table from the database.
- JDatabaseDriverMysql::dropTable() : Drops a table from the database.
- JDatabaseDriverPostgresql::dropTable() : Drops a table from the database.
Method to escape a string for usage in an SQL statement.
- string $text: The string to be escaped.
- boolean $extra: Optional parameter to provide extra escaping.
- JDatabaseDriverSqlsrv::escape() : Method to escape a string for usage in an SQL statement.
- JDatabaseDriverPdo::escape() : Method to escape a string for usage in an SQL statement.
- JDatabaseDriverSqlite::escape() : Method to escape a string for usage in an SQLite statement.
- JDatabaseDriverMysql::escape() : Method to escape a string for usage in an SQL statement.
- JDatabaseDriverMysqli::escape() : Method to escape a string for usage in an SQL statement.
- JDatabaseDriverPostgresql::escape() : Method to escape a string for usage in an SQL statement.
Execute the SQL statement.
- JDatabaseDriverSqlsrv::execute() : Execute the SQL statement.
- JDatabaseDriverPdo::execute() : Execute the SQL statement.
- JDatabaseDriverMysql::execute() : Execute the SQL statement.
- JDatabaseDriverMysqli::execute() : Execute the SQL statement.
- JDatabaseDriverPostgresql::execute() : Execute the SQL statement.
Method to fetch a row from the result set cursor as an array.
- mixed $cursor: The optional result set cursor from which to fetch the row.
- JDatabaseDriverSqlsrv::fetchArray() : Method to fetch a row from the result set cursor as an array.
- JDatabaseDriverPdo::fetchArray() : Method to fetch a row from the result set cursor as an array.
- JDatabaseDriverMysql::fetchArray() : Method to fetch a row from the result set cursor as an array.
- JDatabaseDriverMysqli::fetchArray() : Method to fetch a row from the result set cursor as an array.
- JDatabaseDriverPostgresql::fetchArray() : Method to fetch a row from the result set cursor as an array.
Method to fetch a row from the result set cursor as an associative array.
- mixed $cursor: The optional result set cursor from which to fetch the row.
- JDatabaseDriverSqlsrv::fetchAssoc() : Method to fetch a row from the result set cursor as an associative array.
- JDatabaseDriverPdo::fetchAssoc() : Method to fetch a row from the result set cursor as an associative array.
- JDatabaseDriverMysql::fetchAssoc() : Method to fetch a row from the result set cursor as an associative array.
- JDatabaseDriverMysqli::fetchAssoc() : Method to fetch a row from the result set cursor as an associative array.
- JDatabaseDriverPostgresql::fetchAssoc() : Method to fetch a row from the result set cursor as an associative array.
Method to fetch a row from the result set cursor as an object.
- mixed $cursor: The optional result set cursor from which to fetch the row.
- string $class: The class name to use for the returned row object.
- JDatabaseDriverSqlsrv::fetchObject() : Method to fetch a row from the result set cursor as an object.
- JDatabaseDriverPdo::fetchObject() : Method to fetch a row from the result set cursor as an object.
- JDatabaseDriverMysql::fetchObject() : Method to fetch a row from the result set cursor as an object.
- JDatabaseDriverMysqli::fetchObject() : Method to fetch a row from the result set cursor as an object.
- JDatabaseDriverPostgresql::fetchObject() : Method to fetch a row from the result set cursor as an object.
Method to free up the memory used for the result set.
- mixed $cursor: The optional result set cursor from which to fetch the row.
- JDatabaseDriverSqlsrv::freeResult() : Method to free up the memory used for the result set.
- JDatabaseDriverPdo::freeResult() : Method to free up the memory used for the result set.
- JDatabaseDriverMysql::freeResult() : Method to free up the memory used for the result set.
- JDatabaseDriverMysqli::freeResult() : Method to free up the memory used for the result set.
- JDatabaseDriverPostgresql::freeResult() : Method to free up the memory used for the result set.
Get the number of affected rows for the previous executed SQL statement.
- JDatabaseDriverSqlsrv::getAffectedRows() : Get the number of affected rows for the previous executed SQL statement.
- JDatabaseDriverPdo::getAffectedRows() : Get the number of affected rows for the previous executed SQL statement.
- JDatabaseDriverMysql::getAffectedRows() : Get the number of affected rows for the previous executed SQL statement.
- JDatabaseDriverMysqli::getAffectedRows() : Get the number of affected rows for the previous executed SQL statement.
- JDatabaseDriverPostgresql::getAffectedRows() : Get the number of affected rows for the previous executed SQL statement.
Method to get the database collation in use by sampling a text field of a table in the database.
- JDatabaseDriverSqlsrv::getCollation() : Method to get the database collation in use by sampling a text field of a table in the database.
- JDatabaseDriverOracle::getCollation() : Method to get the database collation in use by sampling a text field of a table in the database.
- JDatabaseDriverSqlite::getCollation() : Method to get the database collation in use by sampling a text field of a table in the database.
- JDatabaseDriverMysql::getCollation() : Method to get the database collation in use by sampling a text field of a table in the database.
- JDatabaseDriverPostgresql::getCollation() : Method to get the database collation in use by sampling a text field of a table in the database.
Method that provides access to the underlying database connection. Useful for when you need to call a proprietary method such as postgresql's lo_* methods.
Get a list of available database connectors. The list will only be populated with connectors that both the class exists and the static test method returns true. This gives us the ability to have a multitude of connector classes that are self-aware as to whether or not they are able to be used on a given system.
- JDatabase::getConnectors()
- Get a list of available database connectors. The list will only be populated with connectors that both the class exists and the static test method returns true. This gives us the ability to have a multitude of connector classes that are self-aware as to whether or not they are able to be used on a given system.
Get the total number of SQL statements executed by the database driver.
Returns a PHP date() function compliant date format for the database driver.
- JDatabaseDriverOracle::getDateFormat() : Returns the current date format
Method to return a JDatabaseDriver instance based on the given options. There are three global options and then
the rest are specific to the database driver. The 'driver' option defines which JDatabaseDriver class is used for the connection -- the default is 'mysql'. The 'database' option determines which database is to be used for the connection. The 'select' option determines whether the connector should automatically select the chosen database.
Instances are unique to the given options and new objects are only created when a unique options array is passed into the method. This ensures that we don't end up with unnecessary database connection resources.
- array $options: Parameters to be passed to the database driver.
- JDatabase::getInstance()
- Method to return a JDatabaseDriver instance based on the given options. There are three global options and then
Get a new iterator on the current query.
- string $column: An option column to use as the iterator key.
- string $class: The class of object that is returned.
Get the null or zero representation of a timestamp for the database driver.
Get the number of returned rows for the previous executed SQL statement.
- resource $cursor: An optional database cursor resource to extract the row count from.
- JDatabaseDriverSqlsrv::getNumRows() : Get the number of returned rows for the previous executed SQL statement.
- JDatabaseDriverPdo::getNumRows() : Get the number of returned rows for the previous executed SQL statement.
- JDatabaseDriverMysql::getNumRows() : Get the number of returned rows for the previous executed SQL statement.
- JDatabaseDriverMysqli::getNumRows() : Get the number of returned rows for the previous executed SQL statement.
- JDatabaseDriverPostgresql::getNumRows() : Get the number of returned rows for the previous executed SQL statement.
Get the current query object or a new JDatabaseQuery object.
- boolean $new: False to return the current query object, True to return a new JDatabaseQuery object.
- JDatabaseDriverPostgresql::getQuery() : Get the current or query, or new JDatabaseQuery object.
Retrieves field information about the given tables.
- string $table: The name of the database table.
- boolean $typeOnly: True (default) to only return field types.
- JDatabaseDriverSqlsrv::getTableColumns() : Retrieves field information about the given tables.
- JDatabaseDriverOracle::getTableColumns() : Retrieves field information about a given table.
- JDatabaseDriverSqlite::getTableColumns() : Retrieves field information about a given table.
- JDatabaseDriverMysql::getTableColumns() : Retrieves field information about a given table.
- JDatabaseDriverPostgresql::getTableColumns() : Retrieves field information about a given table.
Shows the table CREATE statement that creates the given tables.
- mixed $tables: A table name or a list of table names.
- JDatabaseDriverSqlsrv::getTableCreate() : Shows the table CREATE statement that creates the given tables.
- JDatabaseDriverOracle::getTableCreate() : Shows the table CREATE statement that creates the given tables.
- JDatabaseDriverSqlite::getTableCreate() : Shows the table CREATE statement that creates the given tables.
- JDatabaseDriverMysql::getTableCreate() : Shows the table CREATE statement that creates the given tables.
- JDatabaseDriverPostgresql::getTableCreate() : Shows the table CREATE statement that creates the given tables.
Retrieves field information about the given tables.
- mixed $tables: A table name or a list of table names.
- JDatabaseDriverSqlsrv::getTableKeys() : Get the details list of keys for a table.
- JDatabaseDriverOracle::getTableKeys() : Get the details list of keys for a table.
- JDatabaseDriverSqlite::getTableKeys() : Get the details list of keys for a table.
- JDatabaseDriverMysql::getTableKeys() : Get the details list of keys for a table.
- JDatabaseDriverPostgresql::getTableKeys() : Get the details list of keys for a table.
Method to get an array of all tables in the database.
- JDatabaseDriverSqlsrv::getTableList() : Method to get an array of all tables in the database.
- JDatabaseDriverOracle::getTableList() : Method to get an array of all tables in the database (schema).
- JDatabaseDriverSqlite::getTableList() : Method to get an array of all tables in the database (schema).
- JDatabaseDriverMysql::getTableList() : Method to get an array of all tables in the database.
- JDatabaseDriverPostgresql::getTableList() : Method to get an array of all tables in the database.
Determine whether or not the database engine supports UTF-8 character encoding.
Get the version of the database connector
- JDatabaseDriverSqlsrv::getVersion() : Get the version of the database connector.
- JDatabaseDriverOracle::getVersion() : Get the version of the database connector.
- JDatabaseDriverSqlite::getVersion() : Get the version of the database connector.
- JDatabaseDriverMysql::getVersion() : Get the version of the database connector.
- JDatabaseDriverMysqli::getVersion() : Get the version of the database connector.
- JDatabaseDriverPostgresql::getVersion() : Get the version of the database connector.
Determine whether or not the database engine supports UTF-8 character encoding.
Method to get the auto-incremented value from the last INSERT statement.
- JDatabaseDriverSqlsrv::insertid() : Method to get the auto-incremented value from the last INSERT statement.
- JDatabaseDriverPdo::insertid() : Method to get the auto-incremented value from the last INSERT statement.
- JDatabaseDriverMysql::insertid() : Method to get the auto-incremented value from the last INSERT statement.
- JDatabaseDriverMysqli::insertid() : Method to get the auto-incremented value from the last INSERT statement.
- JDatabaseDriverPostgresql::insertid() : Method to get the auto-incremented value from the last INSERT statement.
Inserts a row into a table based on an object's properties.
- string $table: The name of the database table to insert into.
- object &$object: A reference to an object whose public properties match the table fields.
- string $key: The name of the primary key. If provided the object property is updated.
- JDatabaseDriverSqlsrv::insertObject() : Inserts a row into a table based on an object's properties.
- JDatabaseDriverPostgresql::insertObject() : Inserts a row into a table based on an object's properties.
Method to check whether the installed database version is supported by the database driver
Method to get the first row of the result set from the database query as an associative array of ['field_name' => 'row_value'].
Method to get an array of the result set rows from the database query where each row is an associative array of ['field_name' => 'row_value']. The array of rows can optionally be keyed by a field name, but defaults to a sequential numeric array.
NOTE: Chosing to key the result array by a non-unique field name can result in unwanted behavior and should be avoided.
- string $key: The name of a field on which to key the result array.
- string $column: An optional column name. Instead of the whole row, only this column value will be in the result array.
Method to get an array of values from the $offset field in each row of the result set from the database query.
- integer $offset: The row offset to use to build the result array.
Method to get the next row in the result set from the database query as an object.
- string $class: The class name to use for the returned row object.
- JDatabaseDriverPdo::loadNextObject() : Method to get the next row in the result set from the database query as an object.
Method to get the next row in the result set from the database query as an array.
- JDatabaseDriverPdo::loadNextRow() : Method to get the next row in the result set from the database query as an array.
Method to get the first row of the result set from the database query as an object.
- string $class: The class name to use for the returned row object.
Method to get an array of the result set rows from the database query where each row is an object. The array of objects can optionally be keyed by a field name, but defaults to a sequential numeric array.
NOTE: Choosing to key the result array by a non-unique field name can result in unwanted behavior and should be avoided.
- string $key: The name of a field on which to key the result array.
- string $class: The class name to use for the returned row objects.
Method to get the first field of the first row of the result set from the database query.
- JDatabaseDriverSqlsrv::loadResult() : Method to get the first field of the first row of the result set from the database query.
Method to get the first row of the result set from the database query as an array. Columns are indexed numerically so the first column in the result set would be accessible via $row[0], etc.
Method to get an array of the result set rows from the database query where each row is an array. The array of objects can optionally be keyed by a field offset, but defaults to a sequential numeric array.
NOTE: Choosing to key the result array by a non-unique field can result in unwanted behavior and should be avoided.
- string $key: The name of a field on which to key the result array.
Locks a table in the database.
- string $tableName: The name of the table to unlock.
- JDatabaseDriverSqlsrv::lockTable() : Locks a table in the database.
- JDatabaseDriverOracle::lockTable() : Locks a table in the database.
- JDatabaseDriverSqlite::lockTable() : Locks a table in the database.
- JDatabaseDriverMysql::lockTable() : Locks a table in the database.
- JDatabaseDriverPostgresql::lockTable() : Locks a table in the database.
Method to quote and optionally escape a string to database requirements for insertion into the database.
- string $text: The string to quote.
- boolean $escape: True (default) to escape the string, false to leave it unchanged.
Wrap an SQL statement identifier name such as column, table or database names in quotes to prevent injection risks and reserved word conflicts.
- mixed $name: The identifier name to wrap in quotes, or an array of identifier names to wrap in quotes. Each type supports dot-notation name.
- mixed $as: The AS query part associated to $name. It can be string or array, in latter case it has to be same length of $name; if is null there will not be any AS part for string or array element.
Quote strings coming from quoteName call.
- array $strArr: Array of strings coming from quoteName dot-explosion.
Renames a table in the database.
- string $oldTable: The name of the table to be renamed
- string $newTable: The new name for the table.
- string $backup: Table prefix
- string $prefix: For the table - used to rename constraints in non-mysql databases
- JDatabaseDriverSqlsrv::renameTable() : Renames a table in the database.
- JDatabaseDriverOracle::renameTable() : Renames a table in the database.
- JDatabaseDriverSqlite::renameTable() : Renames a table in the database.
- JDatabaseDriverMysql::renameTable() : Renames a table in the database.
- JDatabaseDriverPostgresql::renameTable() : Renames a table in the database.
This function replaces a string identifier $prefix with the string held is the tablePrefix class variable.
- string $sql: The SQL statement to prepare.
- string $prefix: The common table prefix.
- JDatabaseDriverSqlsrv::replacePrefix() : This function replaces a string identifier $prefix with the string held is the tablePrefix class variable.
- JDatabaseDriverPostgresql::replacePrefix() : This function replaces a string identifier $prefix with the string held is the tablePrefix class variable.
Select a database for use.
- string $database: The name of the database to select for use.
- JDatabaseDriverSqlsrv::select() : Select a database for use.
- JDatabaseDriverPdo::select() : Select a database for use.
- JDatabaseDriverOracle::select() : Select a database for use.
- JDatabaseDriverSqlite::select() : Select a database for use.
- JDatabaseDriverMysql::select() : Select a database for use.
- JDatabaseDriverMysqli::select() : Select a database for use.
- JDatabaseDriverPostgresql::select() : Selects the database, but redundant for PostgreSQL
Sets the database debugging state for the driver.
- boolean $level: True to enable debugging.
Sets the SQL statement string for later execution.
- mixed $query: The SQL statement to set either as a JDatabaseQuery object or a string.
- integer $offset: The affected row offset to set.
- integer $limit: The maximum affected rows to set.
- JDatabaseDriverPdo::setQuery() : Sets the SQL statement string for later execution.
Set the connection to use UTF-8 character encoding.
- JDatabaseDriverSqlsrv::setUTF() : Set the connection to use UTF-8 character encoding.
- JDatabaseDriverPdo::setUTF() : Set the connection to use UTF-8 character encoding.
- JDatabaseDriverOracle::setUTF() : Set the connection to use UTF-8 character encoding.
- JDatabaseDriverSqlite::setUTF() : Set the connection to use UTF-8 character encoding.
- JDatabaseDriverMysql::setUTF() : Set the connection to use UTF-8 character encoding.
- JDatabaseDriverMysqli::setUTF() : Set the connection to use UTF-8 character encoding.
- JDatabaseDriverPostgresql::setUTF() : Custom settings for UTF support
Splits a string of multiple queries into an array of individual queries.
- string $sql: Input SQL string with which to split into individual queries.
- JDatabase::splitSql()
- Splits a string of multiple queries into an array of individual queries.
Method to commit a transaction.
- JDatabaseDriverSqlsrv::transactionCommit() : Method to commit a transaction.
- JDatabaseDriverPdo::transactionCommit() : Method to commit a transaction.
- JDatabaseDriverMysql::transactionCommit() : Method to commit a transaction.
- JDatabaseDriverPostgresql::transactionCommit() : Method to commit a transaction.
Method to roll back a transaction.
- JDatabaseDriverSqlsrv::transactionRollback() : Method to roll back a transaction.
- JDatabaseDriverPdo::transactionRollback() : Method to roll back a transaction.
- JDatabaseDriverMysql::transactionRollback() : Method to roll back a transaction.
- JDatabaseDriverPostgresql::transactionRollback() : Method to roll back a transaction.
Method to initialize a transaction.
- JDatabaseDriverSqlsrv::transactionStart() : Method to initialize a transaction.
- JDatabaseDriverPdo::transactionStart() : Method to initialize a transaction.
- JDatabaseDriverMysql::transactionStart() : Method to initialize a transaction.
- JDatabaseDriverPostgresql::transactionStart() : Method to initialize a transaction.
Method to truncate a table.
- string $table: The table to truncate
Unlocks tables in the database.
- JDatabaseDriverSqlsrv::unlockTables() : Unlocks tables in the database.
- JDatabaseDriverOracle::unlockTables() : Unlocks tables in the database.
- JDatabaseDriverSqlite::unlockTables() : Unlocks tables in the database.
- JDatabaseDriverMysql::unlockTables() : Unlocks tables in the database.
- JDatabaseDriverPostgresql::unlockTables() : Unlocks tables in the database, this command does not exist in PostgreSQL, it is automatically done on commit or rollback.
Updates a row in a table based on an object's properties.
- string $table: The name of the database table to update.
- object &$object: A reference to an object whose public properties match the table fields.
- string $key: The name of the primary key.
- boolean $nulls: True to update null fields or false to ignore them.
- JDatabaseDriverPostgresql::updateObject() : Updates a row in a table based on an object's properties.
Magic method to provide method alias support for quote() and quoteName().
- string $method: The called method.
- array $args: The array of arguments passed to the method.
Inherited Methods
Inherited From JDatabase
JDatabase::getConnectors()
JDatabase::getErrorMsg()
JDatabase::getErrorNum()
JDatabase::getInstance()
JDatabase::query()
JDatabase::splitSql()
JDatabase::stderr()
JDatabase::test()


static
static