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
I've the issue when inserting on any table, the query generated is something with select id from new table. I've switched the "new" keyword to "final" and now it seems to work.
EDIT:
Sorry for the poor information I've written on this.
The error that's happening is this: SQL0199N The use of the reserved word "INTO" following "" is not valid. Expected tokens may include: ", )". SQLSTATE=42601
So we are using the PDO_IBM connector but the DB is on zOS. So I've had to modify the DB2Processor.php on vendor/cooperl/laravel-db2/src/Query/Processors to switch the "new" keyword for "final" like on the DB2 zOS ODBC Processor.
The text was updated successfully, but these errors were encountered:
I've the issue when inserting on any table, the query generated is something with select id from new table. I've switched the "new" keyword to "final" and now it seems to work.
EDIT:
Sorry for the poor information I've written on this.
The error that's happening is this: SQL0199N The use of the reserved word "INTO" following "" is not valid. Expected tokens may include: ", )". SQLSTATE=42601
So we are using the PDO_IBM connector but the DB is on zOS. So I've had to modify the DB2Processor.php on vendor/cooperl/laravel-db2/src/Query/Processors to switch the "new" keyword for "final" like on the DB2 zOS ODBC Processor.
The text was updated successfully, but these errors were encountered: