SQL - SQLSTATE 55019

By kimot, 27 December, 2022

Main cause is that table does not have journaling enabled.

In RPG program source you can solve this by adding this

exec sql SET OPTION COMMIT = *NONE ;

on the top of your code.