Inserting, Updating and Removing data using JDatabase: Difference between revisions
From Joomla! Documentation
Added sample module code at the bottom |
Added deprecation notice and link to Joomla Manual |
||
| (18 intermediate revisions by 6 users not shown) | |||
| Line 1: | Line 1: | ||
{{Warning|This page has been superseded and is no longer maintained. Please go to [https://manual.joomla.org/docs/general-concepts/database/ Joomla Manual ] instead}} | |||
<noinclude><languages /></noinclude> | <noinclude><languages /></noinclude> | ||
<noinclude>{{Joomla version|version=3.x}}{{Joomla version|version=2.5|status=eos}}</noinclude> | <noinclude>{{Joomla version|version=3.x}}{{Joomla version|version=2.5|status=eos}}</noinclude> | ||
| Line 11: | Line 13: | ||
* Inserting, updating and removing data from the database.</translate> | * Inserting, updating and removing data from the database.</translate> | ||
<translate><!--T:5--> | <translate><!--T:5--> | ||
* Selecting data from one or more tables and retrieving it in a variety of | * Selecting data from one or more tables and retrieving it in a variety of forms.</translate> | ||
<translate><!--T:6--> | <translate><!--T:6--> | ||
This section | This section examines inserting, updating and removing data from a database table. See also the [[S:MyLanguage/Selecting_data_using_JDatabase|other part]].</translate> | ||
<translate> | <translate> | ||
| Line 20: | Line 22: | ||
</translate> | </translate> | ||
<translate><!--T:8--> | <translate><!--T:8--> | ||
Joomla provides a sophisticated database abstraction layer to simplify the usage for third party developers. New versions of the Joomla Platform API provide additional functionality which extends the database layer further | Joomla provides a sophisticated database abstraction layer to simplify the usage for third party developers. New versions of the Joomla Platform API provide additional functionality which extends the database layer further and includes features such as connectors to a greater variety of database servers and the query chaining to improve readability of connection code and simplify SQL coding.</translate> | ||
<translate><!--T:9--> | <translate><!--T:9--> | ||
| Line 29: | Line 31: | ||
</translate> | </translate> | ||
<translate><!--T:11--> | <translate><!--T:11--> | ||
Joomla's database querying has changed since the new Joomla Framework was introduced | Joomla's database querying has changed since the new Joomla Framework was introduced ''query chaining'' is now the recommended method for building database queries (although string queries are still supported).</translate> | ||
<translate><!--T:12--> | <translate><!--T:12--> | ||
| Line 37: | Line 39: | ||
To obtain a new instance of the JDatabaseQuery class we use the JDatabaseDriver getQuery method:</translate> | To obtain a new instance of the JDatabaseQuery class we use the JDatabaseDriver getQuery method:</translate> | ||
< | <syntaxhighlight lang="PHP"> | ||
$db = JFactory::getDbo(); | // Use one of the following depending on the file and version of Joomla | ||
$db = $this->_db; // use in Table class, also works in Model classes, J4 onwards | |||
$db = $this->getDatabase(); // only works in the Field, Model or Table classes, J4 onwards | |||
$db = JFactory::getDbo(); //deprecated J3, removed in J4 | |||
$db = Factory::getDbo(); //deprecated J4 - requires use Joomla\CMS\Factory; | |||
$db = $this->getDbo(); // only works in the model or table classes, deprecated J5, use $this->getDatabse(); | |||
$db = Factory::getContainer()->get('DatabaseDriver'); // Not well documented | |||
$query = $db->getQuery(true); | $query = $db->getQuery(true); | ||
</ | </syntaxhighlight> | ||
<translate><!--T:14--> | <translate><!--T:14--> | ||
The | The ''JDatabaseDriver::getQuery'' takes an optional argument, ''$new'', which can be true or false (the default being false).</translate> | ||
<translate><!--T:15--> | <translate><!--T:15--> | ||
| Line 50: | Line 59: | ||
<translate><!--T:16--> | <translate><!--T:16--> | ||
Some of the more frequently used methods include | Some of the more frequently used methods include: select, from, join, where and order. There are also methods such as insert, update and delete for modifying records in the data store. By chaining these and other method calls, you can create almost any query against your data store without compromising portability of your code.</translate> | ||
<translate> | |||
==Inserting a Record== <!--T:17--> | ==Inserting a Record== <!--T:17--> | ||
</translate> | </translate> | ||
| Line 60: | Line 69: | ||
<translate><!--T:19--> | <translate><!--T:19--> | ||
The JDatabaseQuery class provides a number of methods for building insert queries, the most common being | The JDatabaseQuery class provides a number of methods for building insert queries, the most common being insert, columns, values.</translate> | ||
< | <syntaxhighlight lang="php"> | ||
// Get a db connection. | // Get a db connection. | ||
$db = JFactory::getDbo(); | $db = JFactory::getDbo(); //deprecated J3, removed in J4 | ||
$db = Factory::getDbo(); //deprecated J4 - requires use Joomla\CMS\Factory; | |||
$db = $this->getDbo(); // only works in the model or table classes, deprecated J4 | |||
$db = Factory::getContainer()->get('DatabaseDriver'); //J4 onwards, outside of the Model or Table | |||
$db = $this->_db; //only works in the model or table classes, J4 onwards | |||
// Create a new query object. | // Create a new query object. | ||
| Line 85: | Line 97: | ||
$db->setQuery($query); | $db->setQuery($query); | ||
$db->execute(); | $db->execute(); | ||
</ | </syntaxhighlight> | ||
<translate> | |||
<!--T:42--> | |||
(Here the ''quoteName()'' function adds appropriate quotes around the table and column names to avoid conflicts with any database reserved word, now or in the future.)</translate> | |||
<translate> | |||
<!--T:54--> | |||
To get the ID of the row that you just inserted, you can use the ''insertid'' method, for example.</translate> | |||
<syntaxhighlight lang="php"> | |||
// Get the row that was just inserted | |||
$new_row_id = $db->insertid(); | |||
</syntaxhighlight> | |||
<translate> | |||
====How to Store Empty Value as NULL==== <!--T:55--> | |||
</translate> | |||
<translate> | |||
<!--T:56--> | |||
If your default value of a column is NULL, you should not add that column name in the array. Let the database system store NULL as the default value. | |||
If the default value of a column is not NULL and it is allowed to store NULL values, you should specify that in the code. See how to do it in the following example. | |||
</translate> | |||
<syntaxhighlight lang="php"> | |||
// Get a db connection. | |||
$db = JFactory::getDbo(); | |||
// Create a new query object. | |||
$query = $db->getQuery(true); | |||
/** First Case [NULL as default value] **/ | |||
// The column 'profile_value' has NULL as default value. So, we will not add it to the array. The database engine will store NULL as value for column 'profile_value'. | |||
// $columns = array('user_id', 'profile_key', 'profile_value', 'ordering'); | |||
$columns = array('user_id', 'profile_key', 'ordering'); | |||
// Insert values. | |||
$values = array(1001, $db->quote('custom.message'), 1); | |||
( | /** Second Case [string as default value and you can also store NULL value] **/ | ||
// The column 'profile_value' has empty string '' as default value but we can also store NULL value. So, we have to add the column name and NULL value to $columns and $values. | |||
$columns = array('user_id', 'profile_key', 'profile_value', 'ordering'); | |||
// Insert values. | |||
$values = array(1001, $db->quote('custom.message'), $db->quote('NULL'), 1); | |||
</syntaxhighlight> | |||
<translate> | <translate> | ||
| Line 93: | Line 145: | ||
</translate> | </translate> | ||
<translate><!--T:21--> | <translate><!--T:21--> | ||
The | The ''JDatabaseDriver'' class also provides a convenient method for saving an object directly to the database allowing us to add a record to a table without writing a single line of SQL.</translate> | ||
< | <syntaxhighlight lang="php"> | ||
// Create and populate an object. | // Create and populate an object. | ||
$profile = new stdClass(); | $profile = new stdClass(); | ||
| Line 105: | Line 157: | ||
// Insert the object into the user profile table. | // Insert the object into the user profile table. | ||
$result = JFactory::getDbo()->insertObject('#__user_profiles', $profile); | $result = JFactory::getDbo()->insertObject('#__user_profiles', $profile); | ||
</ | </syntaxhighlight> | ||
<translate><!--T:22--> | <translate><!--T:22--> | ||
| Line 124: | Line 176: | ||
For example, given the following statement:</translate> | For example, given the following statement:</translate> | ||
< | <syntaxhighlight lang=php> | ||
$result = $dbconnect->insertObject('#__my_table', $object, 'primary_key'); | $result = $dbconnect->insertObject('#__my_table', $object, 'primary_key'); | ||
</ | </syntaxhighlight> | ||
<translate> | <translate> | ||
| Line 136: | Line 188: | ||
<translate> | <translate> | ||
<!--T:41--> | <!--T:41--> | ||
'''HINT | '''HINT''' Set $object->primary_key to null or 0 (zero) before inserting.</translate> | ||
<translate> | |||
====How to Store Empty Value as NULL When Inserting an Object==== <!--T:57--> | |||
</translate> | |||
<translate> | |||
<!--T:58--> | |||
If your default value of a column is NULL, you should not add that column name to the object. Let the database system store NULL as the default value. | |||
If the default value of a column is not NULL and it is allowed to store NULL values, you should specify that in the code. See how to do it in the following example. | |||
</translate> | |||
<syntaxhighlight lang="php"> | |||
// Create and populate an object. | |||
$profile = new stdClass(); | |||
$profile->user_id = 1001; | |||
$profile->profile_key='custom.message'; | |||
$profile->ordering=1; | |||
/** First Case [NULL as default value] **/ | |||
// The column 'profile_value' has NULL as default value. So, we will not add it to the object. The database engine will store NULL as value for column 'profile_value'. | |||
// $profile->profile_value='Inserting a record using insertObject()'; | |||
/** Second Case [string as default value and you can also store NULL value] **/ | |||
// The column 'profile_value' has empty string '' as default value but we can also store NULL value. So, we have to add the column name and NULL value as its value. | |||
$profile->profile_value = $db->quote('NULL'); | |||
// Insert the object into the user profile table. | |||
$result = JFactory::getDbo()->insertObject('#__user_profiles', $profile); | |||
</syntaxhighlight> | |||
<translate> | <translate> | ||
| Line 145: | Line 225: | ||
</translate> | </translate> | ||
<translate><!--T:27--> | <translate><!--T:27--> | ||
The | The [https://api.joomla.org/cms-3/classes/JDatabaseQuery.html JDatabaseQuery] class also provides methods for building update queries, in particular [https://api.joomla.org/cms-3/classes/JDatabaseQuery.html#method_update update] and [https://api.joomla.org/cms-3/classes/JDatabaseQuery.html#method_set set]. We also reuse another method which we used when creating select statements, the ''where'' method.</translate> | ||
< | <syntaxhighlight lang="php"> | ||
$db = JFactory::getDbo(); | $db = JFactory::getDbo(); | ||
| Line 155: | Line 235: | ||
$fields = array( | $fields = array( | ||
$db->quoteName('profile_value') . ' = ' . $db->quote('Updating custom message for user 1001.'), | $db->quoteName('profile_value') . ' = ' . $db->quote('Updating custom message for user 1001.'), | ||
$db->quoteName('ordering') . ' = 2' | $db->quoteName('ordering') . ' = 2', | ||
// If you would like to store NULL value, you should specify that. | |||
$db->quoteName('avatar') . ' = NULL', | |||
); | ); | ||
| Line 169: | Line 252: | ||
$result = $db->execute(); | $result = $db->execute(); | ||
</ | </syntaxhighlight> | ||
<translate> | <translate> | ||
===Using an Object === <!--T:28--> | === Using an Object === <!--T:28--> | ||
</translate> | </translate> | ||
<translate><!--T:29--> | <translate><!--T:29--> | ||
Like | Like ''insertObject'', the JDatabaseDriver class provides a convenient method for updating an object.</translate> | ||
<translate><!--T:30--> | <translate><!--T:30--> | ||
Below we will update our custom table with new values using an existing id primary key:</translate> | Below we will update our custom table with new values using an existing id primary key:</translate> | ||
< | <syntaxhighlight lang="php"> | ||
$updateNulls = true; | |||
// Create an object for the record we are going to update. | // Create an object for the record we are going to update. | ||
$object = new stdClass(); | $object = new stdClass(); | ||
| Line 188: | Line 273: | ||
$object->title = 'My Custom Record'; | $object->title = 'My Custom Record'; | ||
$object->description = 'A custom record being updated in the database.'; | $object->description = 'A custom record being updated in the database.'; | ||
// If you would like to store NULL value, you should specify that. | |||
$object->short_description = null; | |||
// Update their details in the users table using id as the primary key. | // Update their details in the users table using id as the primary key. | ||
$result = JFactory::getDbo()->updateObject('#__custom_table', $object, 'id'); | // You should provide forth parameter with value TRUE, if you would like to store the NULL values. | ||
</ | $result = JFactory::getDbo()->updateObject('#__custom_table', $object, 'id', $updateNulls); | ||
</syntaxhighlight> | |||
<translate><!--T:31--> | <translate><!--T:31--> | ||
| Line 208: | Line 297: | ||
Finally, there is also a delete method to remove records from the database.</translate> | Finally, there is also a delete method to remove records from the database.</translate> | ||
< | <syntaxhighlight lang="php"> | ||
$db = JFactory::getDbo(); | $db = JFactory::getDbo(); | ||
| Line 225: | Line 314: | ||
$result = $db->execute(); | $result = $db->execute(); | ||
</ | </syntaxhighlight> | ||
== Sample Module Code == | <translate> | ||
== Sample Module Code == <!--T:43--></translate> | |||
<translate> | |||
<!--T:44--> | |||
Below is the code for a simple Joomla module which you can install and run to demonstrate use of the JDatabase functionality for updating records in the database and which you can adapt to experiment with some of the concepts described above. If you are unsure about development and installing a Joomla module then following the tutorial at [[S:MyLanguage/J3.x:Creating a simple module/Introduction| Creating a simple module]] will help.</translate> | |||
<translate> | |||
<!--T:45--> | |||
'''Important note: In any Joomla extensions which you develop that you should avoid accessing the core Joomla tables directly like this and should instead use the Joomla APIs if at all possible. The database structures may change without warning.'''</translate> | |||
<translate> | |||
<!--T:46--> | |||
In a folder ''mod_db_update'' create these two files:</translate> | |||
''mod_db_update.xml'' | |||
<syntaxhighlight lang="xml"> | |||
< | |||
<?xml version="1.0" encoding="utf-8"?> | <?xml version="1.0" encoding="utf-8"?> | ||
<extension type="module" version="3.1" client="site" method="upgrade"> | <extension type="module" version="3.1" client="site" method="upgrade"> | ||
| Line 246: | Line 341: | ||
</files> | </files> | ||
</extension> | </extension> | ||
</ | </syntaxhighlight> | ||
''mod_db_update.php'' | |||
< | <syntaxhighlight lang="php"> | ||
<?php | <?php | ||
defined('_JEXEC') or die('Restricted Access'); | defined('_JEXEC') or die('Restricted Access'); | ||
| Line 294: | Line 389: | ||
} | } | ||
} | } | ||
</ | </syntaxhighlight> | ||
<translate> | |||
<!--T:47--> | |||
The code above updates the email address field in the ''users'' record of the currently logged-on user, toggling between upper case and lower case in successive reloads of the web page. </translate> | |||
<translate> | |||
<!--T:48--> | |||
The method ''Factory::getUser()'' returns the ''user'' object of the currently logged-on user, or if not logged on, then a blank ''user'' object, whose ''id'' field is set to zero. </translate> | |||
<translate> | |||
<!--T:49--> | |||
The ''$db->replacePrefix((string) $query)'' expression returns the actual SQL statement and outputting this can be useful in debugging. </translate> | |||
<translate> | |||
<!--T:50--> | |||
Zip up the ''mod_db_update'' directory to create ''mod_db_update.zip''.</translate> | |||
<translate> | |||
<!--T:51--> | |||
Within your Joomla administrator go to Install Extensions and via the Upload Package File tab. Upload this zip file to install this sample log module.</translate> | |||
Within your Joomla administrator go to Install Extensions and via the Upload Package File tab | |||
<translate> | |||
<!--T:52--> | |||
Make this module visible by editing it (click on it within the Modules page) then: | Make this module visible by editing it (click on it within the Modules page) then: | ||
# | # Make its status ''Published'' | ||
# | # Select a position on the page for it to be shown | ||
# | # Specify the pages it should appear on in the Menu Assignment tab</translate> | ||
When you visit a site web page | <translate> | ||
<!--T:53--> | |||
When you visit a site web page you should see the module in your selected position and it should output the SQL UPDATE statement and affirm that it has updated the record successfully. To confirm that it has updated the record correctly, go into PHPMyAdmin and view the ''users'' table within the Joomla database. The updates aren't visible via the admin Users functionality on the Backend; Joomla displays in lower case all the email addresses in the records.</translate> | |||
<noinclude> | <noinclude> | ||
Latest revision as of 10:38, 27 November 2024
This page has been superseded and is no longer maintained. Please go to Joomla Manual instead
Note many examples online use $db->query() instead of $db->execute(). This was the old method in Joomla 1.5 and 2.5 and will throw a deprecated notice in Joomla 3.0+.
This tutorial is split into two independent parts:
- Inserting, updating and removing data from the database.
- Selecting data from one or more tables and retrieving it in a variety of forms.
This section examines inserting, updating and removing data from a database table. See also the other part.
Introduction
Joomla provides a sophisticated database abstraction layer to simplify the usage for third party developers. New versions of the Joomla Platform API provide additional functionality which extends the database layer further and includes features such as connectors to a greater variety of database servers and the query chaining to improve readability of connection code and simplify SQL coding.
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.
The Query
Joomla's database querying has changed since the new Joomla Framework was introduced query chaining is now the recommended method for building database queries (although string queries are still supported).
Query chaining refers to a method of connecting a number of methods, one after the other, with each method returning an object that can support the next method, improving readability and simplifying code.
To obtain a new instance of the JDatabaseQuery class we use the JDatabaseDriver getQuery method:
// Use one of the following depending on the file and version of Joomla
$db = $this->_db; // use in Table class, also works in Model classes, J4 onwards
$db = $this->getDatabase(); // only works in the Field, Model or Table classes, J4 onwards
$db = JFactory::getDbo(); //deprecated J3, removed in J4
$db = Factory::getDbo(); //deprecated J4 - requires use Joomla\CMS\Factory;
$db = $this->getDbo(); // only works in the model or table classes, deprecated J5, use $this->getDatabse();
$db = Factory::getContainer()->get('DatabaseDriver'); // Not well documented
$query = $db->getQuery(true);
The JDatabaseDriver::getQuery takes an optional argument, $new, which can be true or false (the default being false).
To query our data source we can call a number of JDatabaseQuery methods; these methods encapsulate the data source's query language (in most cases SQL), hiding query-specific syntax from the developer and increasing the portability of the developer's source code.
Some of the more frequently used methods include: select, from, join, where and order. There are also methods such as insert, update and delete for modifying records in the data store. By chaining these and other method calls, you can create almost any query against your data store without compromising portability of your code.
Inserting a Record
Using SQL
The JDatabaseQuery class provides a number of methods for building insert queries, the most common being insert, columns, values.
// Get a db connection.
$db = JFactory::getDbo(); //deprecated J3, removed in J4
$db = Factory::getDbo(); //deprecated J4 - requires use Joomla\CMS\Factory;
$db = $this->getDbo(); // only works in the model or table classes, deprecated J4
$db = Factory::getContainer()->get('DatabaseDriver'); //J4 onwards, outside of the Model or Table
$db = $this->_db; //only works in the model or table classes, J4 onwards
// Create a new query object.
$query = $db->getQuery(true);
// Insert columns.
$columns = array('user_id', 'profile_key', 'profile_value', 'ordering');
// Insert values.
$values = array(1001, $db->quote('custom.message'), $db->quote('Inserting a record using insert()'), 1);
// Prepare the insert query.
$query
->insert($db->quoteName('#__user_profiles'))
->columns($db->quoteName($columns))
->values(implode(',', $values));
// Set the query using our newly populated query object and execute it.
$db->setQuery($query);
$db->execute();
(Here the quoteName() function adds appropriate quotes around the table and column names to avoid conflicts with any database reserved word, now or in the future.) To get the ID of the row that you just inserted, you can use the insertid method, for example.
// Get the row that was just inserted
$new_row_id = $db->insertid();
How to Store Empty Value as NULL
If your default value of a column is NULL, you should not add that column name in the array. Let the database system store NULL as the default value. If the default value of a column is not NULL and it is allowed to store NULL values, you should specify that in the code. See how to do it in the following example.
// Get a db connection.
$db = JFactory::getDbo();
// Create a new query object.
$query = $db->getQuery(true);
/** First Case [NULL as default value] **/
// The column 'profile_value' has NULL as default value. So, we will not add it to the array. The database engine will store NULL as value for column 'profile_value'.
// $columns = array('user_id', 'profile_key', 'profile_value', 'ordering');
$columns = array('user_id', 'profile_key', 'ordering');
// Insert values.
$values = array(1001, $db->quote('custom.message'), 1);
/** Second Case [string as default value and you can also store NULL value] **/
// The column 'profile_value' has empty string '' as default value but we can also store NULL value. So, we have to add the column name and NULL value to $columns and $values.
$columns = array('user_id', 'profile_key', 'profile_value', 'ordering');
// Insert values.
$values = array(1001, $db->quote('custom.message'), $db->quote('NULL'), 1);
Using an Object
The JDatabaseDriver class also provides a convenient method for saving an object directly to the database allowing us to add a record to a table without writing a single line of SQL.
// Create and populate an object.
$profile = new stdClass();
$profile->user_id = 1001;
$profile->profile_key='custom.message';
$profile->profile_value='Inserting a record using insertObject()';
$profile->ordering=1;
// Insert the object into the user profile table.
$result = JFactory::getDbo()->insertObject('#__user_profiles', $profile);
Notice here that we do not need to escape the table name; the insertObject method does this for us.
The insertObject method will throw a error if there is a problem inserting the record into the database table.
If you are providing a unique primary key value (as in the example above), it is highly recommended that you select from the table by that column value before attempting an insert.
If you are simply inserting the next row in your table (i.e. the database generates a primary key value), you can specify the primary key column-name as the third parameter of the insertObject() method and the method will update the object with the newly generated primary key value.
For example, given the following statement:
$result = $dbconnect->insertObject('#__my_table', $object, 'primary_key');
after execution, $object->primary_key will be updated with the newly inserted row's primary key value.
HINT Set $object->primary_key to null or 0 (zero) before inserting.
How to Store Empty Value as NULL When Inserting an Object
If your default value of a column is NULL, you should not add that column name to the object. Let the database system store NULL as the default value. If the default value of a column is not NULL and it is allowed to store NULL values, you should specify that in the code. See how to do it in the following example.
// Create and populate an object.
$profile = new stdClass();
$profile->user_id = 1001;
$profile->profile_key='custom.message';
$profile->ordering=1;
/** First Case [NULL as default value] **/
// The column 'profile_value' has NULL as default value. So, we will not add it to the object. The database engine will store NULL as value for column 'profile_value'.
// $profile->profile_value='Inserting a record using insertObject()';
/** Second Case [string as default value and you can also store NULL value] **/
// The column 'profile_value' has empty string '' as default value but we can also store NULL value. So, we have to add the column name and NULL value as its value.
$profile->profile_value = $db->quote('NULL');
// Insert the object into the user profile table.
$result = JFactory::getDbo()->insertObject('#__user_profiles', $profile);
Updating a Record
Using SQL
The JDatabaseQuery class also provides methods for building update queries, in particular update and set. We also reuse another method which we used when creating select statements, the where method.
$db = JFactory::getDbo();
$query = $db->getQuery(true);
// Fields to update.
$fields = array(
$db->quoteName('profile_value') . ' = ' . $db->quote('Updating custom message for user 1001.'),
$db->quoteName('ordering') . ' = 2',
// If you would like to store NULL value, you should specify that.
$db->quoteName('avatar') . ' = NULL',
);
// Conditions for which records should be updated.
$conditions = array(
$db->quoteName('user_id') . ' = 42',
$db->quoteName('profile_key') . ' = ' . $db->quote('custom.message')
);
$query->update($db->quoteName('#__user_profiles'))->set($fields)->where($conditions);
$db->setQuery($query);
$result = $db->execute();
Using an Object
Like insertObject, the JDatabaseDriver class provides a convenient method for updating an object.
Below we will update our custom table with new values using an existing id primary key:
$updateNulls = true;
// Create an object for the record we are going to update.
$object = new stdClass();
// Must be a valid primary key value.
$object->id = 1;
$object->title = 'My Custom Record';
$object->description = 'A custom record being updated in the database.';
// If you would like to store NULL value, you should specify that.
$object->short_description = null;
// Update their details in the users table using id as the primary key.
// You should provide forth parameter with value TRUE, if you would like to store the NULL values.
$result = JFactory::getDbo()->updateObject('#__custom_table', $object, 'id', $updateNulls);
Just like insertObject, updateObject takes care of escaping table names for us.
The updateObject method will throw a error if there is a problem updating the record into the database table.
We need to ensure that the record already exists before attempting to update it, so we would probably add some kind of record check before executing the updateObject method.
Deleting a Record
Finally, there is also a delete method to remove records from the database.
$db = JFactory::getDbo();
$query = $db->getQuery(true);
// delete all custom keys for user 1001.
$conditions = array(
$db->quoteName('user_id') . ' = 1001',
$db->quoteName('profile_key') . ' = ' . $db->quote('custom.%')
);
$query->delete($db->quoteName('#__user_profiles'));
$query->where($conditions);
$db->setQuery($query);
$result = $db->execute();
Sample Module Code
Below is the code for a simple Joomla module which you can install and run to demonstrate use of the JDatabase functionality for updating records in the database and which you can adapt to experiment with some of the concepts described above. If you are unsure about development and installing a Joomla module then following the tutorial at Creating a simple module will help.
Important note: In any Joomla extensions which you develop that you should avoid accessing the core Joomla tables directly like this and should instead use the Joomla APIs if at all possible. The database structures may change without warning.
In a folder mod_db_update create these two files:
mod_db_update.xml
<?xml version="1.0" encoding="utf-8"?>
<extension type="module" version="3.1" client="site" method="upgrade">
<name>Database update demo</name>
<version>1.0.1</version>
<description>Code demonstrating use of Joomla Database class to perform SQL UPDATE statements</description>
<files>
<filename module="mod_db_update">mod_db_update.php</filename>
</files>
</extension>
mod_db_update.php
<?php
defined('_JEXEC') or die('Restricted Access');
use Joomla\CMS\Factory;
$db = Factory::getDbo();
$me = Factory::getUser();
if ($me->id == 0)
{
echo "Not logged on!";
}
else
{
$email = $me->email;
// change the case of the email address
$email_uppercase = strtoupper($email);
if ($email == $email_uppercase)
{
$new_email = strtolower($email);
}
else
{
$new_email = $email_uppercase;
}
$query = $db->getQuery(true);
$fields = array($db->quoteName('email') . " = '{$new_email}'");
$conditions = array($db->quoteName('id') . ' = ' . $me->id);
$query->update($db->quoteName('#__users'))->set($fields)->where($conditions);
echo $db->replacePrefix((string) $query);
$db->setQuery($query);
if ($result = $db->execute())
{
echo "Email case successfully changed!";
}
}
The code above updates the email address field in the users record of the currently logged-on user, toggling between upper case and lower case in successive reloads of the web page. The method Factory::getUser() returns the user object of the currently logged-on user, or if not logged on, then a blank user object, whose id field is set to zero. The $db->replacePrefix((string) $query) expression returns the actual SQL statement and outputting this can be useful in debugging.
Zip up the mod_db_update directory to create mod_db_update.zip.
Within your Joomla administrator go to Install Extensions and via the Upload Package File tab. Upload this zip file to install this sample log module.
Make this module visible by editing it (click on it within the Modules page) then:
- Make its status Published
- Select a position on the page for it to be shown
- Specify the pages it should appear on in the Menu Assignment tab
When you visit a site web page you should see the module in your selected position and it should output the SQL UPDATE statement and affirm that it has updated the record successfully. To confirm that it has updated the record correctly, go into PHPMyAdmin and view the users table within the Joomla database. The updates aren't visible via the admin Users functionality on the Backend; Joomla displays in lower case all the email addresses in the records.