root/trunk/lib/Data/ObjectDriver/Driver/DBI/mysql.pm @ 6

Revision 6, 245 bytes (checked in by sky, 4 years ago)

r9@crucially-3 (orig r926): btrott | 2005-06-23 14:32:15 -0700
Moved default init_db into DBI.pm.
Removed audit stuff from BaseObject.


  • Property svn:keywords set to Id Revision
Line 
1# $Id$
2
3package Data::ObjectDriver::Driver::DBI::mysql;
4use strict;
5use base qw( Data::ObjectDriver::Driver::DBI );
6
7use Carp qw( croak );
8
9sub fetch_id { $_[1]->{mysql_insertid} || $_[1]->{insertid} }
10
11sub commit   { 1 }
12sub rollback { 1 }
13
141;
Note: See TracBrowser for help on using the browser.