cvsuser 03/08/05 11:26:59
Modified: App-Repository/lib/App/Repository MySQL2.pm
Log:
oops. method is _insert_row(), not insert_row()
Revision Changes Path
1.9 +3 -3 p5ee/App-Repository/lib/App/Repository/MySQL2.pm
Index: MySQL2.pm
===================================================================
RCS file: /cvs/public/p5ee/App-Repository/lib/App/Repository/MySQL2.pm,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -w -r1.8 -r1.9
--- MySQL2.pm 5 Aug 2003 17:50:47 -0000 1.8
+++ MySQL2.pm 5 Aug 2003 18:26:59 -0000 1.9
@@ -1,12 +1,12 @@
######################################################################
-## File: $Id: MySQL2.pm,v 1.8 2003/08/05 17:50:47 spadkins Exp $
+## File: $Id: MySQL2.pm,v 1.9 2003/08/05 18:26:59 spadkins Exp $
######################################################################
use App::Repository::MySQL;
package App::Repository::MySQL2;
-$VERSION = do { my @r=(q$Revision: 1.8 $=~/\d+/g); sprintf "%d."."%02d"x$#r,@r};
+$VERSION = do { my @r=(q$Revision: 1.9 $=~/\d+/g); sprintf "%d."."%02d"x$#r,@r};
@ISA = ( "App::Repository::MySQL" );
@@ -270,7 +270,7 @@
$ok = 0;
$errmsg = "";
eval {
- $ok = $self->insert_row($table_ih,[EMAIL
PROTECTED],$oldrow);
+ $ok = $self->_insert_row($table_ih,[EMAIL
PROTECTED],$oldrow);
$errmsg = $self->error();
};
$errmsg = $@ if ($@);