cvsuser 05/01/20 08:57:42
Modified: App-Repository/lib/App/Repository MySQL2.pm
Log:
add no_deserialization option
Revision Changes Path
1.11 +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.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- MySQL2.pm 2 Sep 2004 21:02:28 -0000 1.10
+++ MySQL2.pm 20 Jan 2005 16:57:42 -0000 1.11
@@ -1,12 +1,12 @@
######################################################################
-## File: $Id: MySQL2.pm,v 1.10 2004/09/02 21:02:28 spadkins Exp $
+## File: $Id: MySQL2.pm,v 1.11 2005/01/20 16:57:42 spadkins Exp $
######################################################################
use App::Repository::MySQL;
package App::Repository::MySQL2;
-$VERSION = do { my @r=(q$Revision: 1.10 $=~/\d+/g); sprintf
"%d."."%02d"x$#r,@r};
+$VERSION = do { my @r=(q$Revision: 1.11 $=~/\d+/g); sprintf
"%d."."%02d"x$#r,@r};
@ISA = ( "App::Repository::MySQL" );
@@ -91,7 +91,7 @@
$oldrows = [];
my ($tmprows, %newrows);
- $tmprows = $self->get_rows($table,$params,[EMAIL PROTECTED]);
+ $tmprows = $self->get_rows($table,$params,[EMAIL
PROTECTED],{no_deserialization => 1});
for ($rownum = 0; $rownum <= $#$tmprows; $rownum++) {
$oldrow = $tmprows->[$rownum];