Managing Component Updates with Joomla!2.5 - Part 4
Please note that the content on this page is currently incomplete. Please treat it as a work in progress.
- This article was last edited by Sm990 (talk| contribs) 23 months ago. (Purge)
Articles in this series
Update SQL files
The update SQL file(s) are located in a directory that is listed in the manifest file:
<update> <schemas> <schemapath type="mysql">sql/updates</schemapath> </schemas> </update>
There is a file for each component version. Each file name must match the version string in the manifest file for that version. Joomla uses this string to determine which SQL files(s) to execute, and in what order they will be executed. Joomla uses the PHP version_compare function for this. Familiarize yourself with this command. Your version sequence needs to adhere to the conventions of this command. For example, the SQL files for version 3.1 include:
1.0.sql (empty) 1.1.sql UPDATE `#__mytest_mytable` SET myvalue='Version 1.1 text' WHERE id=1; 1.1.1.sql UPDATE `#__mytest_mytable` SET myvalue='Version 1.1.1 text' WHERE id=1; 1.2.sql INSERT INTO `#__mytest_mytable` (id,myvalue) VALUES (2,'Version 1.2 text'); 1.2.1.sql UPDATE `#__mytest_mytable` SET myvalue='Version 1.2.1 text' WHERE id=2; 1.3.sql INSERT INTO `#__mytest_mytable` (id,myvalue) VALUES (3,'Version 1.3 text');
This example has complete install files for component versions 1.0 (initial), 1.1.1 and 1.3. Update SQL files are included for additional incremental component versions (1.1, 1.2 and 1.2.1) between these three versions. These extra versions illustrate the process for updates that span more than one incremental version.
- Both files 1.1.sql and 1.1.1.sql are executed when updating directly from version 1.0 to version 1.1.1. The SQL commands update the value of the first, and only, row in the database table. The 1.1.1 update over-writes the value that was written by the 1.1 update.
- Files 1.2.sql 1.2.1.sql and 1.3.sql are executed when updating from 1.1.1 to 1.3. The commands for 1.2 and 1.3 each create a new row in the database table.
- Files 1.1.sql, 1.1.1.sql, 1.2.sql, 1.2.1.sql and 1.3.sql are executed when updating from version 1.0 directly to 1.3. You can see the cumulative effect of the table changes in the component front-end.
Joomla executes the database updates in the sequence that would occur, as if the user had updated each version separately. This would be necessary if an incremental database update depended on the correct update from the previous version. An example would be: an addition of a table value during one version depended on the insertion of a new table field during the update of the previous version. Joomla uses the PHP function version_compare to define the execution order of the SQL files. The sequencing of your component version string must adhere to that defined by the version_compare function.