Uses of Class
org.postgresql.largeobject.LargeObject
-
Packages that use LargeObject Package Description org.postgresql.jdbc org.postgresql.largeobject -
-
Uses of LargeObject in org.postgresql.jdbc
Fields in org.postgresql.jdbc declared as LargeObject Modifier and Type Field Description private LargeObjectAbstractBlobClob. currentLoFields in org.postgresql.jdbc with type parameters of type LargeObject Modifier and Type Field Description private java.util.ArrayList<LargeObject>AbstractBlobClob. subLOsWe create separate LargeObjects for methods that use streams so they won't interfere with each other.Methods in org.postgresql.jdbc that return LargeObject Modifier and Type Method Description protected LargeObjectAbstractBlobClob. getLo(boolean forWrite)Methods in org.postgresql.jdbc with parameters of type LargeObject Modifier and Type Method Description protected voidAbstractBlobClob. addSubLO(LargeObject subLO) -
Uses of LargeObject in org.postgresql.largeobject
Fields in org.postgresql.largeobject declared as LargeObject Modifier and Type Field Description private LargeObjectBlobInputStream. loThe parent LargeObject.private LargeObjectBlobOutputStream. loThe parent LargeObject.Methods in org.postgresql.largeobject that return LargeObject Modifier and Type Method Description private LargeObjectBlobOutputStream. checkClosed()LargeObjectLargeObject. copy()private LargeObjectBlobInputStream. getLo()LargeObjectLargeObjectManager. open(int oid)Deprecated.As of 8.3, replaced byLargeObjectManager.open(long)LargeObjectLargeObjectManager. open(int oid, boolean commitOnClose)This opens an existing large object, same as previous method, but commits the transaction on close if asked.LargeObjectLargeObjectManager. open(int oid, int mode)Deprecated.As of 8.3, replaced byLargeObjectManager.open(long, int)LargeObjectLargeObjectManager. open(int oid, int mode, boolean commitOnClose)This opens an existing large object, same as previous method, but commits the transaction on close if asked.LargeObjectLargeObjectManager. open(long oid)This opens an existing large object, based on its OID.LargeObjectLargeObjectManager. open(long oid, boolean commitOnClose)This opens an existing large object, same as previous method, but commits the transaction on close if asked.LargeObjectLargeObjectManager. open(long oid, int mode)This opens an existing large object, based on its OID.LargeObjectLargeObjectManager. open(long oid, int mode, boolean commitOnClose)This opens an existing large object, based on its OID.Constructors in org.postgresql.largeobject with parameters of type LargeObject Constructor Description BlobInputStream(LargeObject lo)BlobInputStream(LargeObject lo, int bsize)BlobInputStream(LargeObject lo, int bsize, long limit)BlobOutputStream(LargeObject lo)Create an OutputStream to a large object.BlobOutputStream(LargeObject lo, int bufferSize)Create an OutputStream to a large object.
-