=head1 NAME DBIx::Class::Manual::SQLHackers::UPDATE - DBIx::Class for SQL Hackers - UPDATE =over =item L =item L =item L =item L =item UPDATE =item L =item L =back =head1 UPDATEing data =head2 Single row delayed update versus direct update Individual rows may be updated via their Result object in one of two ways. You can create an object representing an existing database table row and hold it in your programmes memory, passing it around from function to function changing its values, before actually updating the contents into the database. This is a delayed update. A direct update still involves fetching the existing row from the database, but instead of storing new column values in the Row object, the update method is called and passed the set of new values to store in the table. NOTE: Running a direct update on a row object that already has changed values, will *also* apply those values to the database. If values are changed both on the object, and in the update method arguments, the argument values take precedence. =head2 Updating a row in memory To create a Row object for delayed update (or other manipulations), first fetch it from the database as described in L. =over =item 1. Create a Schema object representing the database you are working with: my $schema = MyDatabase::Schema->connect('dbi:SQLite:my.db'); =item 2. Call the B method on the resultset for the L you wish to update the contents of: my $fred_user = $schema->resultset('User')->find({ id => 1 }); B<$fred_user>'s contents can now be changed using the accessor methods created by B, back in L. These are generally named after the columns in the database, so to change fred's real name, use the B method. =item 3. Call the B accessor method on the $fred_user object: $fred_user->realname("John Bloggs"); This value has not yet changed in the database, we can make the actual update by calling *update*: =item 4. Update the set value(s) into the database: $fred_user->update(); =back The update method will only actually send an UPDATE statement to the database if one or more of the columns have changed. The internal tracking of which columns have been changed can be queried using several methods. B returns true (or a list of changed column names), if any column values have changed. B will return true or false for the given column name argument. The previous values of the columns are not stored. =head2 Update a single row with simple values UPDATE users SET username = 'new@email.address' WHERE id = 1; To update an existing row, first B it using the methods shown in L or L, for example: =over =item 1. Create a Schema object representing the database you are working with: my $schema = MyDatabase::Schema->connect('dbi:SQLite:my.db'); =item 2. Call the B method on the resultset for the L you wish to fetch data from: my $fred_user = $schema->resultset('User')->find({ id => 1 }); The Row object has an B method that will change the values on the object, and send an UPDATE query to the database. =item 3. Call the B method, passing it a hashref of new data: $fred_user->update({ username => 'new@email.address' }); =back See also: L. =head2 Update multiple rows with simple values -- Warning, pointless example! UPDATE users SET dob = '2010-08-16' WHERE realname LIKE 'jess%'; To update a whole set of rows, or all of them, we first need to create a ResultSet object representing the query conditions that would be needed to select that same set of rows. We need to use B, then we use the B method on the ResultSet. =over =item 1. Create a Schema object representing the database you are working with: my $schema = MyDatabase::Schema->connect('dbi:SQLite:my.db'); =item 2. Call the B method on the resultset for the L you wish to fetch data from: my $user_search = $schema->resultset('User')->search( { realname => { like => 'jess%' } } ); =item 3. Call the B method on the resultset to change the matching rows: $user_search->update({ dob => '2010-08-16' }); =back =head2 Update a row or rows using a column calculation -- Yet another pointless example UPDATE users SET username = username || '.uk' WHERE id = 1; =over =item 1. Create a Schema object representing the database you are working with: my $schema = MyDatabase::Schema->connect('dbi:SQLite:my.db'); =item 2. Call the B method on the resultset for the L you wish to fetch data from: my $fred_user = $schema->resultset('User')->find({ id => 1 }); The Row object has an B method that will change the values on the object, and send an UPDATE query to the database. =item 3. Call the B method, passing it a hashref of new data: # this won't yet work, DBIC for now mandates the [ {} => $value ] format, the simple \[ $sql, $value1, $value2 ] will start being recognized later on # the only documentation we currently have is this, if you can turn it into a DBIC pod-patch it will be freaking awesome # https://github.com/dbsrgits/dbix-class/commit/0e773352 $fred_user->update({ username => \['username || ?', '.uk'] }); ^^ you never got around to this # the DBIC syntax is a tad different from te thing above (i.e. we no longer encourage 'dummy' crap) The \[ .. ] syntax here is described in L documentation, used for passing bind parameters. =back =head2 Update a row based on data in other tables -- Slightly less pointless example UPDATE posts SET title = user.username || title JOIN users user ON user.id = posts.user_id; Joining two tables for an update is a similar sort of exercise to joining them for a select query and using data from both. =over =item 1. Create a Schema object representing the database you are working with: my $schema = MyDatabase::Schema->connect('dbi:SQLite:my.db'); =item 2. Call the B method on the resultset for the L you wish to update data in, joining to the second table: my $posts = $schema->resultset('Post')->search( {}, { join => 'user' } ); The B key takes as an argument a nested structure of one or more relation names (see L). =item 3. Call the B method on the resultset to run the UPDATE statement: $posts->update({ 'me.title' => \[ 'user.username || me.title' ] }); ^^ I am 95% sure this won't actually work, please try it (ideally as a passing or failing test) =back =head2 Update or create a row -- MySQL non-standardness (and another silly example) INSERT INTO users ( ... ) VALUES ( ... ) ON DUPLICATE KEY UPDATE password = 'newpass'; -- OR: BEGIN TRANSACTION; SELECT id, username, dob, realname, password FROM users WHERE username = 'joebloggs'; UPDATE users SET id = ?, username = ?, dob = ?, realname = ?, password = ?; COMMIT; DBIx::Class does not yet produce the non-standard MySQL "ON DUPLICATE KEY UPDATE", instead it has a shortcut for combining B and B. To avoid race conditions, this should be done in a transaction. =over =item 1. Create a Schema object representing the database you are working with: my $schema = MyDatabase::Schema->connect('dbi:SQLite:my.db'); =item 2. Call the B method on the schema object, passing it a coderef to execute inside the transaction: ^^ ouch! I didn't realize we don't do that automatically, this is a bug ^^ probably a good idea not to mention it - I'll fix it @ GPW ## Not entirely sure what thing you mean here.. $schema->txn_do( sub { =item 3. Call the B method on the resultset for the L you wish to update data in: $schema->resultset('User')->update_or_create( { username => 'joebloggs', dob => '2010-09-10', realname = 'Joe Bloggs' }, { key => 'uniq_username' } ); =item 4. Close off the transaction / coderef: } ); =back A transaction is issued containing two statements, a B