Liste de tous les membres
Description détaillée
Définition à la ligne 20 du fichier mysql.php.
Documentation des fonctions membres
JDatabaseIteratorMysql::count |
( |
| ) |
|
Get the number of rows in the result set for the executed SQL given by the cursor.
- Renvoie:
- integer The number of rows in the result set.
- Depuis:
- 12.1
- Voir également:
- Countable::count()
Définition à la ligne 30 du fichier mysql.php.
{
return mysql_num_rows($this->cursor);
}
JDatabaseIteratorMysql::fetchObject |
( |
| ) |
|
|
protected |
Method to fetch a row from the result set cursor as an object.
- Renvoie:
- mixed Either the next row from the result set or false if there are no more rows.
- Depuis:
- 12.1
Réimplémentée à partir de JDatabaseIterator.
Définition à la ligne 42 du fichier mysql.php.
{
return mysql_fetch_object($this->cursor, $this->class);
}
JDatabaseIteratorMysql::freeResult |
( |
| ) |
|
|
protected |
Method to free up the memory used for the result set.
- Renvoie:
- void
- Depuis:
- 12.1
Réimplémentée à partir de JDatabaseIterator.
Définition à la ligne 54 du fichier mysql.php.
{
mysql_free_result($this->cursor);
}
La documentation de cette classe a été générée à partir du fichier suivant :
- jplatform-13.1/joomla/database/iterator/mysql.php