should I call lo_unlink ? A delete didn't remove the object from pg_largeobject.
+2
A:
Yes, you need to explicitly call lo_unlink(). I assume you just DELETEd the row that held a reference to it, and that will not remove the actual large object.
If you only ever reference it from the same place, you can always create a trigger to do it automatically for you.
Magnus Hagander
2009-08-01 06:59:50
tks for your answer. I made the trigger and works great :D
Dani Cricco
2009-08-01 13:10:03