|
DBI::Simple::Recordset - Stores the results of a query executed with DBI::Simple |
DBI::Simple::Recordset - Stores the results of a query executed with DBI::Simple
use DBI::Simple;
$dbi = DBI::Simple->connect('mysql:hostname=localhost;database=main', 'user', 'pass');
$rs = $dbi->query('SELECT * FROM Users');
while($rs->has_records)
{
print @{$rs->row};
$rs->move_next;
}
$rs->insert(name => 'jdoe', pass => 'password');
$rs->commit;
DBI::Simple::Recordset allows navigation of a resultset returned by the L<DBI::Simple> C<query> function.
DBI::Simple::Recordset objects are returned by the query method of the DBI::Simple manpage. Recordsets provide
the following functions:
dbhdbh method returns the underlying DBI database handle.
sthsth method returns the underlying DBI statement handle.
move_next
None by default.
the DBI::Simple manpage, the DBI manpage, DBD::*
Copyright 2003 by A. U. Thor
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
|
DBI::Simple::Recordset - Stores the results of a query executed with DBI::Simple |