Hi,
On some server in php 7.2.34 i've got error when i try to do :
$tmp=ibase_prepare($dbh, 'SELECT * FROM myTable WHERE myField = ?');
$tmp2=ibase_execute($tmp,1);
the error:
Dynamic SQL Error SQL error code = -303 arithmetic exception, numeric overflow, or string truncation
This problem is present only on some server and when i use integer parameters.
if i do:
$tmp=ibase_prepare($dbh, 'SELECT * FROM myTable WHERE myField = 1');
$tmp2=ibase_execute($tmp);
it works.
I don't understand what's the problem.
Any idea ?
Hi, On some server in php 7.2.34 i've got error when i try to do :
the error: Dynamic SQL Error SQL error code = -303 arithmetic exception, numeric overflow, or string truncation This problem is present only on some server and when i use integer parameters. if i do:
it works. I don't understand what's the problem. Any idea ?