|
From: Chris W. <la...@us...> - 2001-11-01 05:37:25
|
Update of /cvsroot/openinteract/OpenInteract/OpenInteract/SPOPS
In directory usw-pr-cvs1:/tmp/cvs-serv14763/SPOPS
Modified Files:
DBI.pm
Log Message:
modify the output of field discovery errors
Index: DBI.pm
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract/OpenInteract/SPOPS/DBI.pm,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** DBI.pm 2001/10/29 03:14:09 1.10
--- DBI.pm 2001/11/01 05:37:22 1.11
***************
*** 57,61 ****
$sth->execute;
};
! return ( NOTIFY, "Cannot discover fields: $@" ) if ( $@ );
$CONFIG->{field} = $sth->{NAME};
return ( OK, undef );
--- 57,61 ----
$sth->execute;
};
! return ( NOTIFY, "Cannot discover fields\n -> $sql\n -> $@" ) if ( $@ );
$CONFIG->{field} = $sth->{NAME};
return ( OK, undef );
|