pg_lo_import
Name
pg_lo_import -- import a large object from a file
Synopsis
pg_lo_import conn filename
Description
      pg_lo_import reads the specified file and
      places the contents into a new large object.
    
Arguments
- conn
-             The handle of a connection to the database in which to create the
            large object.
           
- filename
-             Specified the file from which to import the data.
           
Return Value
      The OID of the large object created.
    
      A Tcl error will be thrown if an error occurs.
    
Notes
      All large object manipulation must take place within an SQL transaction
      block.
    
      This command uses the PostgreSQL
      libpq
      function lo_import.