Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can pgadmin manage large objects? [closed]

Is pgadmin aware of PostgreSQL large objects?

like image 219
jl6 Avatar asked Sep 03 '25 03:09

jl6


1 Answers

pgAdmin does not appear to have any special large object support. You can however use the standard sql language functions available on any client interface to manage them. See http://dave.webdev.pgadmin.org/docs/1.4/pg/largeobjects.html as a reference of these functions.

This leads to a number of important limitations. You would get an escaped string when you pull a large object from the database. You cannot, say, pull a file and display it as an image or the like.

like image 197
Chris Travers Avatar answered Sep 05 '25 01:09

Chris Travers