in reply to DBD::mysqlPP does not support TYPE and PRECISION statement handles?
From the manual:
For SELECT statements, execute simply "starts" the query within the database engine.
To actually get/iterate through the results, you need to do a "fetch" command like
Update1: Ugh!. Misread the problem. Sorry.my $rowref = $sth->fetchrow_arrayref();
Update2: Ok - so it looks like the underlying mysql driver does not support those attributes.
But you probably already knew that.
Syntactic sugar causes cancer of the semicolon. --Alan Perlis
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: DBD::mysqlPP does not support TYPE and PRECISION statement handles?
by taioba (Acolyte) on Oct 26, 2010 at 16:26 UTC |