Hi,
it's true DBIx::Recordset hasn't been updated for a long time. The reason is
simple, it does all I need :-) Anyway I have a set of patches people send me
and it would be worth putting them into a new release. Also there are some
ideas what can be enhanced. As you already know I don't have the
Stefan Cars wrote:
> Hi!
>
> Embperl says unstrutured forward jump when parsing my documents, can
> that have todo with some table errors ?
>
Yes, that means that you have some nesting errors in a table or
if/while/foreach etc.
Gerald
-
Hi, I have this script.
[-
if (defined $fdat{ImageName}) {
open FILE, "> test ;
print FILE $buffer
while read($fdat{ImageName}, $buffer, 32768);
close FILE;
}
-]
File test exist but have size 0 k.
I have Embperl v 1.3.6.
Thanks, Rado
---
Hi:
In EplSite WorkFlow i am using this routine and works fine:
use CGI;
$query = new CGI;
if( $file = $query->param('ImageName') )
{
@thefile = split(/\\/,$file);
$elements = @thefile;
$thedocument = "[EMAIL PROTECTED]";
$thedocument =~ s/\s/_/g;
Firstly Rado, there is a typo in your "open" line: a missing closing ".
The only other thing I would suggest is using BINMODE. See below for an
example routine.
> In EplSite WorkFlow i am using this routine and works fine:
>
> use CGI;
> $query = new CGI;
>
> if( $file = $query->par