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
Thank you for your hard work on this plug-in. It is very much appreciated.
We've found that BLOBs only work reliably in insert statements if they appear at the end of a field list. If they are intermixed with other fields, they don't work. For example:
Doesn't work:
INSERT INTO sometable (p1, p2, p3) VALUES (:val1, EMPTY_BLOB(), :val3) RETURNING p2 INTO :v2
Does work:
INSERT INTO sometable (p1, p2, p3) VALUES (:val1, :val2, EMPTY_BLOB()) RETURNING p3 INTO :v3