Joomla Platform
13.1
Documentation des API du framework Joomla Platform
|
Fonctions membres publiques | |
__construct ($options) | |
__destruct () | |
connect () | |
disconnect () | |
escape ($text, $extra=false) | |
connected () | |
dropTable ($tableName, $ifExists=true) | |
getAffectedRows () | |
getCollation () | |
getNumRows ($cursor=null) | |
getTableCreate ($tables) | |
getTableColumns ($table, $typeOnly=true) | |
getTableKeys ($table) | |
getTableList () | |
getVersion () | |
insertid () | |
lockTable ($table) | |
execute () | |
renameTable ($oldTable, $newTable, $backup=null, $prefix=null) | |
select ($database) | |
setUTF () | |
transactionCommit ($toSavepoint=false) | |
transactionRollback ($toSavepoint=false) | |
transactionStart ($asSavepoint=false) | |
unlockTables () | |
Fonctions membres publiques inherited from JDatabaseDriver | |
__call ($method, $args) | |
alterDbCharacterSet ($dbName) | |
createDatabase ($options, $utf=true) | |
addDisconnectHandler ($callable) | |
getConnection () | |
getCount () | |
getDateFormat () | |
getLog () | |
getTimings () | |
getCallStacks () | |
getMinimum () | |
getNullDate () | |
getPrefix () | |
getExporter () | |
getImporter () | |
getQuery ($new=false) | |
getIterator ($column=null, $class= 'stdClass') | |
getUTFSupport () | |
hasUTFSupport () | |
insertObject ($table, &$object, $key=null) | |
isMinimumVersion () | |
loadAssoc () | |
loadAssocList ($key=null, $column=null) | |
loadColumn ($offset=0) | |
loadNextObject ($class= 'stdClass') | |
loadNextRow () | |
loadObject ($class= 'stdClass') | |
loadObjectList ($key= '', $class= 'stdClass') | |
loadResult () | |
loadRow () | |
loadRowList ($key=null) | |
quote ($text, $escape=true) | |
quoteName ($name, $as=null) | |
replacePrefix ($sql, $prefix= '#__') | |
setDebug ($level) | |
setQuery ($query, $offset=0, $limit=0) | |
truncateTable ($table) | |
updateObject ($table, &$object, $key, $nulls=false) | |
Fonctions membres publiques inherited from JDatabase | |
query () | |
getErrorMsg ($escaped=false) | |
getErrorNum () | |
stderr ($showSQL=false) |
Fonctions membres publiques statiques | |
static | isSupported () |
Fonctions membres publiques statiques inherited from JDatabaseDriver | |
static | getConnectors () |
static | getInstance ($options=array()) |
static | splitSql ($sql) |
Fonctions membres publiques statiques inherited from JDatabase | |
static | test () |
Attributs publics | |
$name = 'mysqli' | |
Attributs publics inherited from JDatabaseDriver |
Fonctions membres protégées | |
fetchArray ($cursor=null) | |
fetchAssoc ($cursor=null) | |
fetchObject ($cursor=null, $class= 'stdClass') | |
freeResult ($cursor=null) | |
Fonctions membres protégées inherited from JDatabaseDriver | |
getAlterDbCharacterSet ($dbName) | |
getCreateDatabaseQuery ($options, $utf) | |
getDatabase () | |
quoteNameStr ($strArr) |
Attributs protégés | |
$nameQuote = '`' | |
$nullDate = '0000-00-00 00:00:00' | |
Attributs protégés inherited from JDatabaseDriver | |
$connection | |
$count = 0 | |
$cursor | |
$debug = false | |
$limit = 0 | |
$log = array() | |
$timings = array() | |
$callStacks = array() | |
$offset = 0 | |
$options | |
$sql | |
$tablePrefix | |
$utf = true | |
$errorNum = 0 | |
$errorMsg | |
$transactionDepth = 0 | |
$disconnectHandlers = array() |
Attributs protégés statiques | |
static | $dbMinimum = '5.0.4' |
Attributs protégés statiques inherited from JDatabaseDriver | |
static | $instances = array() |
Fonctions membres privées | |
hasProfiling () |
Définition à la ligne 20 du fichier mysqli.php.
JDatabaseDriverMysqli::__construct | ( | $options | ) |
Constructor.
array | $options | List of options used to configure the connection |
Réimplémentée à partir de JDatabaseDriver.
Réimplémentée dans JDatabaseDriverMysql.
Définition à la ligne 63 du fichier mysqli.php.
JDatabaseDriverMysqli::__destruct | ( | ) |
Destructor.
Réimplémentée dans JDatabaseDriverMysql.
Définition à la ligne 83 du fichier mysqli.php.
JDatabaseDriverMysqli::connect | ( | ) |
Connects to the database if needed.
RuntimeException |
Réimplémentée à partir de JDatabaseDriver.
Réimplémentée dans JDatabaseDriverMysql.
Définition à la ligne 96 du fichier mysqli.php.
JDatabaseDriverMysqli::connected | ( | ) |
Determines if the connection to the server is active.
Réimplémentée à partir de JDatabaseDriver.
Réimplémentée dans JDatabaseDriverMysql.
Définition à la ligne 259 du fichier mysqli.php.
JDatabaseDriverMysqli::disconnect | ( | ) |
Disconnects the database.
Réimplémentée à partir de JDatabaseDriver.
Réimplémentée dans JDatabaseDriverMysql.
Définition à la ligne 200 du fichier mysqli.php.
JDatabaseDriverMysqli::dropTable | ( | $tableName, | |
$ifExists = true |
|||
) |
Drops a table from the database.
string | $tableName | The name of the database table to drop. |
boolean | $ifExists | Optionally specify that the table must exist before it is dropped. |
RuntimeException |
Réimplémentée à partir de JDatabaseDriver.
Définition à la ligne 280 du fichier mysqli.php.
JDatabaseDriverMysqli::escape | ( | $text, | |
$extra = false |
|||
) |
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. |
Réimplémentée à partir de JDatabaseDriver.
Réimplémentée dans JDatabaseDriverMysql.
Définition à la ligne 226 du fichier mysqli.php.
JDatabaseDriverMysqli::execute | ( | ) |
Execute the SQL statement.
RuntimeException |
Réimplémentée à partir de JDatabaseDriver.
Réimplémentée dans JDatabaseDriverMysql.
Définition à la ligne 515 du fichier mysqli.php.
Références JLog\add(), JLog\DEBUG, JLog\ERROR, et JText\sprintf().
|
protected |
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. |
Réimplémentée à partir de JDatabaseDriver.
Réimplémentée dans JDatabaseDriverMysql.
Définition à la ligne 775 du fichier mysqli.php.
|
protected |
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. |
Réimplémentée à partir de JDatabaseDriver.
Réimplémentée dans JDatabaseDriverMysql.
Définition à la ligne 789 du fichier mysqli.php.
|
protected |
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. |
Réimplémentée à partir de JDatabaseDriver.
Réimplémentée dans JDatabaseDriverMysql.
Définition à la ligne 804 du fichier mysqli.php.
|
protected |
Method to free up the memory used for the result set.
mixed | $cursor | The optional result set cursor from which to fetch the row. |
Réimplémentée à partir de JDatabaseDriver.
Réimplémentée dans JDatabaseDriverMysql.
Définition à la ligne 818 du fichier mysqli.php.
JDatabaseDriverMysqli::getAffectedRows | ( | ) |
Get the number of affected rows for the previous executed SQL statement.
Réimplémentée à partir de JDatabaseDriver.
Réimplémentée dans JDatabaseDriverMysql.
Définition à la ligne 300 du fichier mysqli.php.
JDatabaseDriverMysqli::getCollation | ( | ) |
Method to get the database collation in use by sampling a text field of a table in the database.
RuntimeException |
Réimplémentée à partir de JDatabaseDriver.
Définition à la ligne 315 du fichier mysqli.php.
JDatabaseDriverMysqli::getNumRows | ( | $cursor = null | ) |
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. |
Réimplémentée à partir de JDatabaseDriver.
Réimplémentée dans JDatabaseDriverMysql.
Définition à la ligne 344 du fichier mysqli.php.
JDatabaseDriverMysqli::getTableColumns | ( | $table, | |
$typeOnly = true |
|||
) |
Retrieves field information about a given table.
string | $table | The name of the database table. |
boolean | $typeOnly | True to only return field types. |
RuntimeException |
Réimplémentée à partir de JDatabaseDriver.
Définition à la ligne 391 du fichier mysqli.php.
JDatabaseDriverMysqli::getTableCreate | ( | $tables | ) |
Shows the table CREATE statement that creates the given tables.
mixed | $tables | A table name or a list of table names. |
RuntimeException |
Réimplémentée à partir de JDatabaseDriver.
Définition à la ligne 359 du fichier mysqli.php.
JDatabaseDriverMysqli::getTableKeys | ( | $table | ) |
Get the details list of keys for a table.
string | $table | The name of the table. |
RuntimeException |
Réimplémentée à partir de JDatabaseDriver.
Définition à la ligne 431 du fichier mysqli.php.
JDatabaseDriverMysqli::getTableList | ( | ) |
Method to get an array of all tables in the database.
RuntimeException |
Réimplémentée à partir de JDatabaseDriver.
Définition à la ligne 450 du fichier mysqli.php.
JDatabaseDriverMysqli::getVersion | ( | ) |
Get the version of the database connector.
Réimplémentée à partir de JDatabaseDriver.
Réimplémentée dans JDatabaseDriverMysql.
Définition à la ligne 468 du fichier mysqli.php.
|
private |
Internal function to check if profiling is available
Réimplémentée dans JDatabaseDriverMysql.
Définition à la ligne 849 du fichier mysqli.php.
JDatabaseDriverMysqli::insertid | ( | ) |
Method to get the auto-incremented value from the last INSERT statement.
Réimplémentée à partir de JDatabaseDriver.
Réimplémentée dans JDatabaseDriverMysql.
Définition à la ligne 483 du fichier mysqli.php.
|
static |
Test to see if the MySQL connector is available.
Implémente JDatabaseInterface.
Réimplémentée dans JDatabaseDriverMysql.
Définition à la ligne 247 du fichier mysqli.php.
JDatabaseDriverMysqli::lockTable | ( | $table | ) |
Locks a table in the database.
string | $table | The name of the table to unlock. |
RuntimeException |
Réimplémentée à partir de JDatabaseDriver.
Définition à la ligne 500 du fichier mysqli.php.
JDatabaseDriverMysqli::renameTable | ( | $oldTable, | |
$newTable, | |||
$backup = null , |
|||
$prefix = null |
|||
) |
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 | Not used by MySQL. |
string | $prefix | Not used by MySQL. |
RuntimeException |
Réimplémentée à partir de JDatabaseDriver.
Définition à la ligne 625 du fichier mysqli.php.
JDatabaseDriverMysqli::select | ( | $database | ) |
Select a database for use.
string | $database | The name of the database to select for use. |
RuntimeException |
Réimplémentée à partir de JDatabaseDriver.
Réimplémentée dans JDatabaseDriverMysql.
Définition à la ligne 642 du fichier mysqli.php.
JDatabaseDriverMysqli::setUTF | ( | ) |
Set the connection to use UTF-8 character encoding.
Réimplémentée à partir de JDatabaseDriver.
Réimplémentée dans JDatabaseDriverMysql.
Définition à la ligne 666 du fichier mysqli.php.
JDatabaseDriverMysqli::transactionCommit | ( | $toSavepoint = false | ) |
Method to commit a transaction.
boolean | $toSavepoint | If true, commit to the last savepoint. |
RuntimeException |
Réimplémentée à partir de JDatabaseDriver.
Définition à la ligne 683 du fichier mysqli.php.
JDatabaseDriverMysqli::transactionRollback | ( | $toSavepoint = false | ) |
Method to roll back a transaction.
boolean | $toSavepoint | If true, rollback to the last savepoint. |
RuntimeException |
Réimplémentée à partir de JDatabaseDriver.
Définition à la ligne 710 du fichier mysqli.php.
JDatabaseDriverMysqli::transactionStart | ( | $asSavepoint = false | ) |
Method to initialize a transaction.
boolean | $asSavepoint | If true and a transaction is already active, a savepoint will be created. |
RuntimeException |
Réimplémentée à partir de JDatabaseDriver.
Définition à la ligne 743 du fichier mysqli.php.
JDatabaseDriverMysqli::unlockTables | ( | ) |
Unlocks tables in the database.
RuntimeException |
Réimplémentée à partir de JDatabaseDriver.
Définition à la ligne 835 du fichier mysqli.php.
|
staticprotected |
Réimplémentée à partir de JDatabaseDriver.
Définition à la ligne 54 du fichier mysqli.php.
JDatabaseDriverMysqli::$name = 'mysqli' |
Réimplémentée à partir de JDatabaseDriver.
Réimplémentée dans JDatabaseDriverMysql.
Définition à la ligne 28 du fichier mysqli.php.
|
protected |
Réimplémentée à partir de JDatabaseDriver.
Définition à la ligne 39 du fichier mysqli.php.
|
protected |
Réimplémentée à partir de JDatabaseDriver.
Définition à la ligne 48 du fichier mysqli.php.