You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 ?
The text was updated successfully, but these errors were encountered:
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 ?
The text was updated successfully, but these errors were encountered: