Why should I use the Joomla database class?
Joomla can use different kinds of SQL database systems and run in a variety of environments with different table-prefixes. In addition to these functions, the class automatically creates the database connection. Besides instantiating the object you need just two lines of code to get a result from the database in a variety of formats. Using the Joomla database layer ensures a maximum of compatibility and flexibility for your extension.Preparing the query
// Get a database object $db =& JFactory::getDBO(); $query = "SELECT * FROM #__example_table WHERE id = 999999;"; $db->setQuery($query);
Now, if we don't want to get information from the database, but rather insert a row into it, we need one more function. Every string value in the SQL syntax should be quoted. For example, MySQL uses backticks `` for names and single quotes ‘‘ for values. Joomla has some functions to do this for us and to ensure code compatibility between different databases. We can pass the names to the function $db->nameQuote($name) and the values to the function $db->Quote($value).
A fully quoted query example is:
$query = " SELECT * FROM ".$db->nameQuote('#__example_table')." WHERE ".$db->nameQuote('id')." = ".$db->quote('999999')."; ";
setQuery($query)
The setQuery($query) method sets up a database query for later execution either by the query() method or one of the Load result methods.$db =& JFactory::getDBO(); $query = "/* some valid sql string */"; $db->setQuery($query);
setQuery() also takes three other parameters: $offset, $limit (both used in list pagination) and $prefix, an alternative table prefix. All three variables have default values set and can usually be ignored.
Executing the Query
To execute the query, Joomla provides several functions, which differ in their return value.Basic Query Execution
query()
The query() method is the basic tool for executing SQL queries on a database. In Joomla it is most often used for updating or administering the database simply because the various load methods detailed on this page have the query step built into them.The syntax is very straightforward:
$db =& JFactory::getDBO(); $query = "/* some valid sql string */"; $db->setQuery($query); $result = $db->query();
Query Execution Information
- getAffectedRows()
- explain()
insertid()
If you insert a record into a table that contains an AUTO_INCREMENT column, you can obtain the value stored into that column by calling the insertid() function$query = "INSERT INTO '#__example_table' ('name','email','username') VALUES ('John Smith','johnsmith@domain.example','johnsmith')"; $db->setQuery($query); $db->query(); $user_id = $db->insertid();
Insert Query Execution
- insertObject()
Query Results
The database class contains many methods for working with a query's result set.Single Value Result
loadResult()
Use loadResult() when you expect just a single value back from your database query.id | name | username | |
---|---|---|---|
1 | John Smith | johnsmith@domain.example | johnsmith |
2 | Magda Hellman | magda_h@domain.example | magdah |
3 | Yvonne de Gaulle | ydg@domain.example | ydegaulle |
$db =& JFactory::getDBO(); $query = " SELECT COUNT(*) FROM ".$db->nameQuote('#__my_table')." WHERE ".$db->nameQuote('name')." = ".$db->quote($value)."; "; $db->setQuery($query); $count = $db->loadResult();
$db =& JFactory::getDBO(); $query = " SELECT ".$db->nameQuote('field_name')." FROM ".$db->nameQuote('#__my_table')." WHERE ".$db->nameQuote('some_name')." = ".$db->quote($some_value)."; "; $db->setQuery($query); $result = $db->loadResult();
Single Row Results
Each of these results functions will return a single record from the database even though there may be several records that meet the criteria that you have set. To get more records you need to call the function again.id | name | username | |
---|---|---|---|
1 | John Smith | johnsmith@domain.example | johnsmith |
2 | Magda Hellman | magda_h@domain.example | magdah |
3 | Yvonne de Gaulle | ydg@domain.example | ydegaulle |
loadRow()
loadRow() returns an indexed array from a single record in the table:. . . $db->setQuery($query); $row = $db->loadRow(); print_r($row);
Array ( [0] => 1 [1] => John Smith [2] => johnsmith@domain.example [3] => johnsmith )You can access the individual values by using:
$row['index'] // e.g. $row['2']Notes:
- The array indices are numeric starting from zero.
- Whilst you can repeat the call to get further rows, one of the functions that returns multiple rows might be more useful.
loadAssoc()
loadAssoc() returns an associated array from a single record in the table:. . . $db->setQuery($query); $row = $db->loadAssoc(); print_r($row);
Array ( [id] => 1 [name] => John Smith [email] => johnsmith@domain.example [username] => johnsmith )You can access the individual values by using:
$row['name'] // e.g. $row['name']Notes:
- Whilst you can repeat the call to get further rows, one of the functions that returns multiple rows might be more useful.
loadObject()
loadObject returns a PHP object from a single record in the table:. . . $db->setQuery($query); $result = $db->loadObject(); print_r($result);
stdClass Object ( [id] => 1 [name] => John Smith [email] => johnsmith@domain.example [username] => johnsmith )You can access the individual values by using:
$result->index // e.g. $result->emailNotes:
- Whilst you can repeat the call to get further rows, one of the functions that returns multiple rows might be more useful.
Single Column Results
Each of these results functions will return a single column from the database.id | name | username | |
---|---|---|---|
1 | John Smith | johnsmith@domain.example | johnsmith |
2 | Magda Hellman | magda_h@domain.example | magdah |
3 | Yvonne de Gaulle | ydg@domain.example | ydegaulle |
loadResultArray()
loadResultArray() returns an indexed array from a single column in the table:$query = " SELECT name, email, username FROM . . . "; . . . $db->setQuery($query); $column= $db->loadResultArray(); print_r($column);
Array ( [0] => John Smith [1] => Magda Hellman [2] => Yvonne de Gaulle )You can access the individual values by using:
$column['index'] // e.g. $column['2']Notes:
- The array indices are numeric starting from zero.
- loadResultArray() is equivalent to loadResultArray(0).
loadResultArray($index)
loadResultArray($index) returns an indexed array from a single column in the table:$query = " SELECT name, email, username FROM . . . "; . . . $db->setQuery($query); $column= $db->loadResultArray(1); print_r($column);
Array ( [0] => johnsmith@domain.example [1] => magda_h@domain.example [2] => ydg@domain.example )You can access the individual values by using:
$column['index'] // e.g. $column['2']loadResultArray($index) allows you to iterate through a series of columns in the results
. . . $db->setQuery($query); for ( $i = 0; $i <= 2; $i++ ) { $column= $db->loadResultArray($i); print_r($column); }
Array ( [0] => John Smith [1] => Magda Hellman [2] => Yvonne de Gaulle ) Array ( [0] => johnsmith@domain.example [1] => magda_h@domain.example [2] => ydg@domain.example ) Array ( [0] => johnsmith [1] => magdah [2] => ydegaulle )Notes:
- The array indices are numeric starting from zero.
Multi-Row Results
Each of these results functions will return multiple records from the database.id | name | username | |
---|---|---|---|
1 | John Smith | johnsmith@domain.example | johnsmith |
2 | Magda Hellman | magda_h@domain.example | magdah |
3 | Yvonne de Gaulle | ydg@domain.example | ydegaulle |
loadRowList()
loadRowList() returns an indexed array of indexed arrays from the table records returned by the query:. . . $db->setQuery($query); $row = $db->loadRowList(); print_r($row);
Array ( [0] => Array ( [0] => 1 [1] => John Smith [2] => johnsmith@domain.example [3] => johnsmith ) [1] => Array ( [0] => 2 [1] => Magda Hellman [2] => magda_h@domain.example [3] => magdah ) [2] => Array ( [0] => 3 [1] => Yvonne de Gaulle [2] => ydg@domain.example [3] => ydegaulle ) )You can access the individual rows by using:
$row['index'] // e.g. $row['2']and you can access the individual values by using:
$row['index']['index'] // e.g. $row['2']['3']Notes:
- The array indices are numeric starting from zero.
loadAssocList()
loadAssocList() returns an indexed array of associated arrays from the table records returned by the query:. . . $db->setQuery($query); $row = $db->loadAssocList(); print_r($row);
Array ( [0] => Array ( [id] => 1 [name] => John Smith [email] => johnsmith@domain.example [username] => johnsmith ) [1] => Array ( [id] => 2 [name] => Magda Hellman [email] => magda_h@domain.example [username] => magdah ) [2] => Array ( [id] => 3 [name] => Yvonne de Gaulle [email] => ydg@domain.example [username] => ydegaulle ) )You can access the individual rows by using:
$row['index'] // e.g. $row['2']and you can access the individual values by using:
$row['index']['column_name'] // e.g. $row['2']['email']
loadAssocList($key)
loadAssocList('key') returns an associated array - indexed on 'key' - of associated arrays from the table records returned by the query:. . . $db->setQuery($query); $row = $db->loadAssocList('username'); print_r($row);
Array ( [johnsmith] => Array ( [id] => 1 [name] => John Smith [email] => johnsmith@domain.example [username] => johnsmith ) [magdah] => Array ( [id] => 2 [name] => Magda Hellman [email] => magda_h@domain.example [username] => magdah ) [ydegaulle] => Array ( [id] => 3 [name] => Yvonne de Gaulle [email] => ydg@domain.example [username] => ydegaulle ) )You can access the individual rows by using:
$row['key_value'] // e.g. $row['johnsmith']and you can access the individual values by using:
$row['key_value']['column_name'] // e.g. $row['johnsmith']['email']Note: Key must be a valid column name from the table; it does not have to be an Index or a Primary Key. But if it does not have a unique value you may not be able to retrieve results reliably.
loadObjectList()
loadObjectList() returns an indexed array of PHP objects from the table records returned by the query:. . . $db->setQuery($query); $row = $db->loadObjectList(); print_r($row);
Array ( [0] => stdClass Object ( [id] => 1 [name] => John Smith [email] => johnsmith@domain.example [username] => johnsmith ) [1] => stdClass Object ( [id] => 2 [name] => Magda Hellman [email] => magda_h@domain.example [username] => magdah ) [2] => stdClass Object ( [id] => 3 [name] => Yvonne de Gaulle [email] => ydg@domain.example [username] => ydegaulle ) )You can access the individual rows by using:
$row['index'] // e.g. $row['2']and you can access the individual values by using:
$row['index']->name // e.g. $row['2']->email
loadObjectList('key')
loadObjectList($key) returns an associated array - indexed on 'key' - of objects from the table records returned by the query:. . . $db->setQuery($query); $row = $db->loadObjectList('username'); print_r($row);
Array ( [johnsmith] => stdClass Object ( [id] => 1 [name] => John Smith [email] => johnsmith@domain.example [username] => johnsmith ) [magdah] => stdClass Object ( [id] => 2 [name] => Magda Hellman [email] => magda_h@domain.example [username] => magdah ) [ydegaulle] => stdClass Object ( [id] => 3 [name] => Yvonne de Gaulle [email] => ydg@domain.example [username] => ydegaulle ) )You can access the individual rows by using:
$row['key_value'] // e.g. $row['johnsmith']and you can access the individual values by using:
$row['key_value']->column_name // e.g. $row['johnsmith']->emailNote: Key must be a valid column name from the table; it does not have to be an Index or a Primary Key. But if it does not have a unique value you may not be able to retrieve results reliably.
Miscellaneous Result Set Methods
getNumRows()
getNumRows() will return the number of result rows found by the last query and waiting to be read. To get a result from getNumRows() you have to run it after the query and before you have retrieved any results.. . . $db->setQuery($query); $db->query(); $num_rows = $db->getNumRows(); print_r($num_rows); $result = $db->loadRowList();
3Note: if you run getNumRows() after loadRowList() - or any other retrieval method - you may get a PHP Warning:
Warning: mysql_num_rows(): 80 is not a valid MySQL result resource in D:\xampp\htdocs\joomla1.5a\libraries\joomla\database\database\mysql.php on line 344
Tips, Tricks & FAQ
Subqueries
Subqueries should be written as follows:SELECT * FROM #__example WHERE id IN (SELECT id FROM #__example2);
$query = "SELECT id FROM #__example2"; $database->setQuery($query); $query = "SELECT * FROM #__example WHERE id IN (". implode(",", $database->loadResultArray()) .")";
Using MySQL User-Defined Variables
MySQL User-Defined Variables are created and maintained for the lifespan of a connection. In Joomla terms this is usually the lifespan of a page request. They can be used in consecutive queries, retaining their value, as long as each query is inside the same connection lifespan.$database =& JFactory::getDBO(); $database->setQuery("SET @num := 0"); $database->query(); $database->setQuery("SET @num := @num + 5"); $database->query(); $database->setQuery("SELECT @num"); $result = $localDB->loadResult();
The fact that they retain their value can be quite useful, however there is also a little risk. If you use the same User-Defined Variable, in this case @num, in another query, make sure you reset it first. If that other query runs within the same connection lifespan, @num will have remembered its value of 5. You may expect it to start at null or 0.
For details on working with MySQL's User-Defined Variables, please refer to the MySQL documentation at http://dev.mysql.com/doc/
Developer-Friendly Tips
Here is a quick way to do four developer-friendly things at once:- Use a simple constant as an SQL seperator (which can probably be used in many queries).
- Make your SQL-in-PHP code easy to read (for yourself and possibly other developers later on).
- Give an error inside your (component-) content without really setting debugging on.
- Have a visibly nice SQL by splitting SQL groups with linebreaks in your error.
$db =& JFactory::getDBO(); $jAp=& JFactory::getApplication(); //We define a linebreak constant define('L', chr(10)); //Here is the most magic $db->setQuery( 'SELECT * FROM #__table'.L. 'WHERE something="something else")'.L. 'ORDER BY date desc' ); $db->query(); //display and convert to HTML when SQL error if (is_null($posts=$db->loadRowList())) {$jAp->enqueueMessage(nl2br($db->getErrorMsg()),'error'); return;}
No comments:
Post a Comment