-
-
18 Mar 2015 00:29:38 UTC
- Distribution: Rose-DB
- Source (raw)
- Browse (raw)
- Changes
- Homepage
- How to Contribute
- Repository
- Issues (4)
- Testers (1128 / 101 / 0)
- Kwalitee
Bus factor: 1- 29.26% Coverage
- License: perl_5
- Perl: v5.6.0
- Activity
24 month- Tools
- Download (113.4KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
- Dependencies
- Bit::Vector::Overload
- Clone::PP
- DBI
- DateTime::Duration
- DateTime::Format::MySQL
- DateTime::Format::Oracle
- DateTime::Format::Pg
- Rose::DateTime::Util
- Rose::Object
- SQL::ReservedWords
- Scalar::Util
- Test::More
- Time::Clock
- and possibly others
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
Rose::DB::Constants - Symbolic names for important Rose::DB constants.
SYNOPSIS
use Rose::DB::Constants qw(IN_TRANSACTION); ... $ret = $db->begin_work or die $db->error; ... unless($ret == IN_TRANSACTION) { $db->commit or die $db->error; }
DESCRIPTION
This module contains and optionally exports symbolic names for important Rose::DB constants. The only constant defined so far is
IN_TRANSACTION
. See the documentation for Rose::DB'sbegin_work()
object method for more information on this constant.This module inherits from
Exporter
. No symbols are exported by default.AUTHOR
John C. Siracusa (siracusa@gmail.com)
LICENSE
Copyright (c) 2010 by John C. Siracusa. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Module Install Instructions
To install Rose::DB, copy and paste the appropriate command in to your terminal.
cpanm Rose::DB
perl -MCPAN -e shell install Rose::DB
For more information on module installation, please visit the detailed CPAN module installation guide.