Help for this page

Select Code to Download


  1. or download this
    # using DBIx::Class:  
    $schema->resultset('Person')->new({FirstName=>'Joe'})->insert();  
    
    # using Class::DBI:
    DB::Person->insert({FirstName=>'Joe'});
    
  2. or download this
    $schema->resultset('Person')->create({ FirstName => 'Joe' });