|
NAMEMojo::Pg::Transaction - TransactionSYNOPSISuse Mojo::Pg::Transaction; my $tx = Mojo::Pg::Transaction->new(db => $db); $tx->commit; DESCRIPTIONMojo::Pg::Transaction is a scope guard for DBD::Pg transactions used by Mojo::Pg::Database.ATTRIBUTESMojo::Pg::Transaction implements the following attributes.dbmy $db = $tx->db; $tx = $tx->db(Mojo::Pg::Database->new); Mojo::Pg::Database object this transaction belongs to. Note that this attribute is weakened. METHODSMojo::Pg::Transaction inherits all methods from Mojo::Base and implements the following new ones.commit$tx->commit; Commit transaction. newmy $tx = Mojo::Pg::Transaction->new; my $tx = Mojo::Pg::Transaction->new(db => Mojo::Pg::Database->new); my $tx = Mojo::Pg::Transaction->new({db => Mojo::Pg::Database->new}); Construct a new Mojo::Pg::Transaction object. SEE ALSOMojo::Pg, Mojolicious::Guides, <https://mojolicious.org>.
Visit the GSP FreeBSD Man Page Interface. |