So it's definitely time for an upgrade, and I have Installed Mageia 4.0 with Postgresql 9.3.
This issue is that when I attempt to run my Perl Scripts on the 9.3 server, I get a strange error:
- Code: Select all
DBD::Pg::st execute failed: ERROR: syntax error at or near ","
LINE 1: ...,action,thresh,discard,evirus,attach,enavirus,over,ssm,visiz...
^ at ./Test-PgSQL.pl line 91.
DBD::Pg::st fetchrow_array failed: no statement executing at ./Test-PgSQL.pl line 92.
The Source of the Code is:
- Code: Select all
$sth = $dbh->prepare("select filter,action,thresh,discard,evirus,attach,enavirus,over,ssm,visize,ssma,redhtml,qesh,qesb,overact,minscore,scanzip,greylist,use_from from configuration where customerid=1");
If I shorten the above to everything before the over variable, it runs perfectly.
Is there a reduction in the space for the selection variables? Do I need to change a configuration setting? Suggestions?
Thank you in advance.