|
|
| |
Teng::Plugin::BulkInsert(3) |
User Contributed Perl Documentation |
Teng::Plugin::BulkInsert(3) |
Teng::Plugin::BulkInsert - (DEPRECATED) Bulk insert helper
- "$teng->bulk_insert($table_name, \@rows_data)"
- Accepts either an arrayref of hashrefs. each hashref should be a structure
suitable for submitting to a Your::Model->insert(...) method.
insert many record by bulk.
example:
Your::Model->bulk_insert('user',[
{
id => 1,
name => 'nekokak',
},
{
id => 2,
name => 'yappo',
},
{
id => 3,
name => 'walf443',
},
]);
Visit the GSP FreeBSD Man Page Interface. Output converted with ManDoc. |