Joomla Platform
13.1
Documentation des API du framework Joomla Platform
|
Fonctions membres publiques | |
__destruct () | |
disconnect () | |
dropTable ($tableName, $ifExists=true) | |
escape ($text, $extra=false) | |
getCollation () | |
getTableCreate ($tables) | |
getTableColumns ($table, $typeOnly=true) | |
getTableKeys ($table) | |
getTableList () | |
getVersion () | |
select ($database) | |
setUTF () | |
lockTable ($table) | |
renameTable ($oldTable, $newTable, $backup=null, $prefix=null) | |
unlockTables () | |
transactionCommit ($toSavepoint=false) | |
transactionRollback ($toSavepoint=false) | |
transactionStart ($asSavepoint=false) | |
Fonctions membres publiques inherited from JDatabaseDriverPdo | |
__construct ($options) | |
connect () | |
execute () | |
getOption ($key) | |
getConnectedQuery () | |
setOption ($key, $value) | |
connected () | |
getAffectedRows () | |
getNumRows ($cursor=null) | |
insertid () | |
setQuery ($query, $offset=null, $limit=null, $driverOptions=array()) | |
loadNextObject ($class= 'stdClass') | |
loadNextAssoc () | |
loadNextRow () | |
__sleep () | |
__wakeup () | |
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) | |
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 () |
Attributs publics | |
$name = 'sqlite' | |
Attributs publics inherited from JDatabaseDriverPdo | |
Attributs publics inherited from JDatabaseDriver |
Attributs protégés | |
$nameQuote = '`' | |
Attributs protégés inherited from JDatabaseDriverPdo | |
$nullDate = '0000-00-00 00:00:00' | |
$prepared | |
$executed = false | |
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() |
Additional Inherited Members | |
Fonctions membres protégées inherited from JDatabaseDriverPdo | |
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) |
Définition à la ligne 20 du fichier sqlite.php.
JDatabaseDriverSqlite::__destruct | ( | ) |
Destructor.
Réimplémentée à partir de JDatabaseDriverPdo.
Définition à la ligne 46 du fichier sqlite.php.
JDatabaseDriverSqlite::disconnect | ( | ) |
Disconnects the database.
Réimplémentée à partir de JDatabaseDriverPdo.
Définition à la ligne 59 du fichier sqlite.php.
JDatabaseDriverSqlite::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. |
Réimplémentée à partir de JDatabaseDriver.
Définition à la ligne 75 du fichier sqlite.php.
JDatabaseDriverSqlite::escape | ( | $text, | |
$extra = false |
|||
) |
Method to escape a string for usage in an SQLite statement.
Note: Using query objects with bound variables is preferable to the below.
string | $text | The string to be escaped. |
boolean | $extra | Unused optional parameter to provide extra escaping. |
Réimplémentée à partir de JDatabaseDriverPdo.
Définition à la ligne 101 du fichier sqlite.php.
JDatabaseDriverSqlite::getCollation | ( | ) |
Method to get the database collation in use by sampling a text field of a table in the database.
Réimplémentée à partir de JDatabaseDriver.
Définition à la ligne 118 du fichier sqlite.php.
JDatabaseDriverSqlite::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 156 du fichier sqlite.php.
JDatabaseDriverSqlite::getTableCreate | ( | $tables | ) |
Shows the table CREATE statement that creates the given tables.
Note: Doesn't appear to have support in SQLite
mixed | $tables | A table name or a list of table names. |
RuntimeException |
Réimplémentée à partir de JDatabaseDriver.
Définition à la ligne 135 du fichier sqlite.php.
JDatabaseDriverSqlite::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 212 du fichier sqlite.php.
JDatabaseDriverSqlite::getTableList | ( | ) |
Method to get an array of all tables in the database (schema).
RuntimeException |
Réimplémentée à partir de JDatabaseDriver.
Définition à la ligne 252 du fichier sqlite.php.
JDatabaseDriverSqlite::getVersion | ( | ) |
Get the version of the database connector.
Réimplémentée à partir de JDatabaseDriver.
Définition à la ligne 279 du fichier sqlite.php.
|
static |
Test to see if the PDO ODBC connector is available.
Réimplémentée à partir de JDatabaseDriverPdo.
Définition à la ligne 378 du fichier sqlite.php.
JDatabaseDriverSqlite::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 333 du fichier sqlite.php.
JDatabaseDriverSqlite::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 Sqlite. |
string | $prefix | Not used by Sqlite. |
RuntimeException |
Réimplémentée à partir de JDatabaseDriver.
Définition à la ligne 351 du fichier sqlite.php.
JDatabaseDriverSqlite::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 JDatabaseDriverPdo.
Définition à la ligne 298 du fichier sqlite.php.
JDatabaseDriverSqlite::setUTF | ( | ) |
Set the connection to use UTF-8 character encoding.
Returns false automatically for the Oracle driver since you can only set the character set when the connection is created.
Réimplémentée à partir de JDatabaseDriverPdo.
Définition à la ligne 316 du fichier sqlite.php.
JDatabaseDriverSqlite::transactionCommit | ( | $toSavepoint = false | ) |
Method to commit a transaction.
boolean | $toSavepoint | If true, commit to the last savepoint. |
RuntimeException |
Réimplémentée à partir de JDatabaseDriverPdo.
Définition à la ligne 393 du fichier sqlite.php.
JDatabaseDriverSqlite::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 JDatabaseDriverPdo.
Définition à la ligne 417 du fichier sqlite.php.
JDatabaseDriverSqlite::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 JDatabaseDriverPdo.
Définition à la ligne 447 du fichier sqlite.php.
JDatabaseDriverSqlite::unlockTables | ( | ) |
Unlocks tables in the database.
RuntimeException |
Réimplémentée à partir de JDatabaseDriver.
Définition à la ligne 366 du fichier sqlite.php.
JDatabaseDriverSqlite::$name = 'sqlite' |
Réimplémentée à partir de JDatabaseDriverPdo.
Définition à la ligne 28 du fichier sqlite.php.
|
protected |
Réimplémentée à partir de JDatabaseDriverPdo.
Définition à la ligne 39 du fichier sqlite.php.