Skip to content

BLOBs only work if they're last in field list #205

@sanfords

Description

@sanfords

Howdy,

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

I think I got that right. :-)

Thanks!

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions