Package | Description |
---|---|
org.postgresql.jdbc | |
org.postgresql.largeobject |
Modifier and Type | Field and Description |
---|---|
private LargeObject |
AbstractBlobClob.currentLo |
Modifier and Type | Field and Description |
---|---|
private java.util.ArrayList<LargeObject> |
AbstractBlobClob.subLOs
We create separate LargeObjects for methods that use streams so they won't interfere with each
other.
|
Modifier and Type | Method and Description |
---|---|
protected LargeObject |
AbstractBlobClob.getLo(boolean forWrite) |
Modifier and Type | Method and Description |
---|---|
protected void |
AbstractBlobClob.addSubLO(LargeObject subLO) |
Modifier and Type | Field and Description |
---|---|
private LargeObject |
BlobOutputStream.lo
The parent LargeObject.
|
private LargeObject |
BlobInputStream.lo
The parent LargeObject.
|
Modifier and Type | Method and Description |
---|---|
LargeObject |
LargeObject.copy() |
LargeObject |
LargeObjectManager.open(int oid)
Deprecated.
As of 8.3, replaced by
LargeObjectManager.open(long) |
LargeObject |
LargeObjectManager.open(int oid,
boolean commitOnClose)
This opens an existing large object, same as previous method, but commits the transaction on
close if asked.
|
LargeObject |
LargeObjectManager.open(int oid,
int mode)
Deprecated.
As of 8.3, replaced by
LargeObjectManager.open(long, int) |
LargeObject |
LargeObjectManager.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.
|
LargeObject |
LargeObjectManager.open(long oid)
This opens an existing large object, based on its OID.
|
LargeObject |
LargeObjectManager.open(long oid,
boolean commitOnClose)
This opens an existing large object, same as previous method, but commits the transaction on
close if asked.
|
LargeObject |
LargeObjectManager.open(long oid,
int mode)
This opens an existing large object, based on its OID.
|
LargeObject |
LargeObjectManager.open(long oid,
int mode,
boolean commitOnClose)
This opens an existing large object, based on its OID.
|
Constructor and 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 bsize)
Create an OutputStream to a large object.
|