Package | Description |
---|---|
org.postgresql.copy | |
org.postgresql.core | |
org.postgresql.core.v3 |
Modifier and Type | Interface | Description |
---|---|---|
interface |
CopyDual |
Bidirectional via copy stream protocol.
|
interface |
CopyIn |
Copy bulk data from client into a PostgreSQL table very fast.
|
interface |
CopyOut |
Modifier and Type | Class | Description |
---|---|---|
class |
PGCopyInputStream |
InputStream for reading from a PostgreSQL COPY TO STDOUT operation.
|
class |
PGCopyOutputStream |
OutputStream for buffered input into a PostgreSQL COPY FROM STDIN operation.
|
Modifier and Type | Method | Description |
---|---|---|
CopyOperation |
QueryExecutor.startCopy(java.lang.String sql,
boolean suppressBegin) |
Issues a COPY FROM STDIN / COPY TO STDOUT statement and returns handler for associated
operation.
|
Modifier and Type | Class | Description |
---|---|---|
class |
CopyDualImpl |
|
class |
CopyInImpl |
COPY FROM STDIN operation.
|
class |
CopyOperationImpl |
|
class |
CopyOutImpl |
Anticipated flow of a COPY TO STDOUT operation:
|
Modifier and Type | Method | Description |
---|---|---|
CopyOperation |
QueryExecutorImpl.startCopy(java.lang.String sql,
boolean suppressBegin) |
Sends given query to BE to start, initialize and lock connection for a CopyOperation.
|
Copyright © 2019 PostgreSQL Global Development Group. All rights reserved.