The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

DBIx::Class::Manual::SQLHackers::INSERT - DBIx::Class for SQL Hackers - INSERT

Introduction
CREATE
INSERT
SELECT
UPDATE
DELETE
BEGIN, COMMIT

INSERTing data

    INSERT INTO users (id, username, dob, realname, password) 
    VALUES (1, 'fredbloggs', '1910-02-01', 'Fred Bloggs', 'secretpass');

Simple bulk insertion, populating rows

The populate method is for inserting chunks of data to pre-populate / initialise a database with a set of known values. In void context it uses DBI's optimized "execute_for_fetch" method.

In scalar or list context populate is a proxy to the create method (on which more below), and returns Row objects.

1. Create a Schema object representing the database you are working with:
        my $schema = MyDatabase::Schema->connect('dbi:SQLite:my.db');
2. Call the populate method for the ResultSource you wish to insert data into:
        $schema->populate('User', [
          [qw(id  username      dob           realname       password     )],
          [   1,  'fredbloggs', '1910-02-01', 'Fred Bloggs', 'secretpass' ],
        ]);

Note that in void context you can skip passing primary key values that will be supplied by the database, and any other values that are allowed to DEFAULT. However no code in your Result classes will be run (e.g. InflateColumn components).

Constructing and inserting Row object

    INSERT INTO users (username, dob, realname, password) 
    VALUES ('fredbloggs', '1910-02-01', 'Fred Bloggs', 'secretpass');

In the course of your application, you will often want to retrieve data from a user, insert it into the database, then continue to use or manipulate the resulting object (the object represents the state of the corresponding database row immediately after creation)

1. Obtain a Schema object:
        my $schema = MyDatabase::Schema->connect('dbi:SQLite:my.db');

(Ideally you will always have one of these handy, no need to make many connections to the database.)

NB: DBIx::Class does not store a Singleton schema object for you, calling connect again will create a new Schema object with a new database connection. Avoid doing this, store and re-use the Schema object.

2. Create a User object:
        my $newuser = $schema->resultset('User')->new({ 
          username  => 'fredbloggs',
          dob       => '1910-02-01',
          realname  => 'Fred Bloggs',
          password  => 'secretpass',
        });

$newuser is now a DBIx::Class::Row object, containing uninserted data. This can be verified by calling $newuser->in_storage, which will return false.

3. Insert the user's data into the database:
        $newuser->insert();

$newuser has been updated to contain the auto-incremented id value in its primary key field (id). $newuser->in_storage now returns true.

You can also shortcut these two methods if you don't need to build up the Row object before inserting:

        ## new+insert in one
        my $newuser = $schema->resultset('User')->create({ 
          username  => 'fredbloggs',
          dob       => '1910-02-01',
          realname  => 'Fred Bloggs',
          password  => 'secretpass',
        });

Now $newuser is a Row object containing data that represents what is in the database.

Add a post for this user

    INSERT INTO posts (user_id, created_date, title, post)
    VALUES (1, '2010-03-24T09:00:00', 'First post!', 'Just testing my blog');

Now that we have a user, they would like to submit their first blog post. We already have the user object, from creation, or from the session when they logged in, so we can create posts using it.

1. Add a post for an existing user:
        ## Remember, create == new and insert.
        my $post = $user->create_related('posts', {
          created_date => '2010-03-24T09:00:00',
          title        => 'First post!',
          post         => 'Just testing my blog',
        });

This does not require us to dig out the user's database id and pass it to the insert call for the posts table, as it is already contained in the $user object.

Insert a new user and their first post

    INSERT INTO users (username, dob, realname, password) 
    VALUES ('fredbloggs', '1910-02-01', 'Fred Bloggs', 'secretpass');

    INSERT INTO posts (user_id, created_date, title, post)
    VALUES (1, '2010-03-24T09:00:00', 'First post!', 'Just testing my blog');

This is a somewhat contrived example, as hopefully you'll want to create the user, and confirm who they are via email confirmation or similar, before allowing them to submit a blog post. Maybe it can be used for commenters and comments..

1. Create a Schema object:
        my $schema = MyDatabase::Schema->connect('dbi:SQLite:my.db');

(You still have one of these, right?)

2. Collect the User and first Post data:
        my $user_and_post = { 
          username  => 'fredbloggs',
          dob       => '1910-02-01',
          realname  => 'Fred Bloggs',
          password  => 'secretpass',
          posts     => [ {
             created_date => '2010-03-24T09:00:00',
             title        => 'First post!',
             post         => 'Just testing my blog',
          } ],
        });
3. Create the User object together with the post data:
        my $newuser = $schema->resultset('User')->new( $user_and_post );
4. Insert the user and post data into the database:
        $newuser->insert();

This also can be shortcut using create:

        ## new+insert in one
        my $newuser = $schema->resultset('User')->create( $user_and_post );