Uses of Interface
org.postgresql.copy.CopyOperation
-
Packages that use CopyOperation Package Description org.postgresql.copy org.postgresql.core org.postgresql.core.v3 -
-
Uses of CopyOperation in org.postgresql.copy
Subinterfaces of CopyOperation in org.postgresql.copy 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
Classes in org.postgresql.copy that implement CopyOperation 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. -
Uses of CopyOperation in org.postgresql.core
Methods in org.postgresql.core that return CopyOperation 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. -
Uses of CopyOperation in org.postgresql.core.v3
Classes in org.postgresql.core.v3 that implement CopyOperation 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:Methods in org.postgresql.core.v3 that return CopyOperation 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.
-