Thank you for reading my question.
We are accessing a Postgres database through SOCI. The schema requires to have tables that contain BLOB fields. Based on PostgreSQL documentation, the ideal type to store a BLOB in a Postgres table is pg_largeobject
.
PostgreSQL method of accessing the pg_largeobject
involves dealing with oid
s. But I was unable to find any details on SOCI documentation regarding this. Have anyone tried this?