Uses of Interface
org.postgresql.util.ByteStreamWriter
-
Packages that use ByteStreamWriter Package Description org.postgresql.copy org.postgresql.core org.postgresql.core.v3 org.postgresql.fastpath org.postgresql.jdbc org.postgresql.largeobject org.postgresql.util -
-
Uses of ByteStreamWriter in org.postgresql.copy
Methods in org.postgresql.copy with parameters of type ByteStreamWriter Modifier and Type Method Description longCopyManager. copyIn(java.lang.String sql, ByteStreamWriter from)Use COPY FROM STDIN for very fast copying from an ByteStreamWriter into a database table.voidCopyIn. writeToCopy(ByteStreamWriter from)Writes a ByteStreamWriter to an open and writable copy operation.voidPGCopyOutputStream. writeToCopy(ByteStreamWriter from) -
Uses of ByteStreamWriter in org.postgresql.core
Methods in org.postgresql.core with parameters of type ByteStreamWriter Modifier and Type Method Description voidPGStream. send(ByteStreamWriter writer)Send a fixed-size array of bytes to the backend.voidParameterList. setBytea(int index, ByteStreamWriter writer)Binds a binary bytea value stored as a ByteStreamWriter. -
Uses of ByteStreamWriter in org.postgresql.core.v3
Methods in org.postgresql.core.v3 with parameters of type ByteStreamWriter Modifier and Type Method Description voidCompositeParameterList. setBytea(int index, ByteStreamWriter writer)voidSimpleParameterList. setBytea(int index, ByteStreamWriter writer)private static voidSimpleParameterList. streamBytea(PGStream pgStream, ByteStreamWriter writer)voidCopyDualImpl. writeToCopy(ByteStreamWriter from)voidCopyInImpl. writeToCopy(ByteStreamWriter from)voidQueryExecutorImpl. writeToCopy(CopyOperationImpl op, ByteStreamWriter from)Sends data during a live COPY IN operation. -
Uses of ByteStreamWriter in org.postgresql.fastpath
Fields in org.postgresql.fastpath declared as ByteStreamWriter Modifier and Type Field Description private ByteStreamWriterFastpathArg.ByteStreamWriterFastpathArg. writerMethods in org.postgresql.fastpath with parameters of type ByteStreamWriter Modifier and Type Method Description static FastpathArgFastpathArg. of(ByteStreamWriter writer)Constructors in org.postgresql.fastpath with parameters of type ByteStreamWriter Constructor Description ByteStreamWriterFastpathArg(ByteStreamWriter writer) -
Uses of ByteStreamWriter in org.postgresql.jdbc
Methods in org.postgresql.jdbc with parameters of type ByteStreamWriter Modifier and Type Method Description private voidPgPreparedStatement. setByteStreamWriter(int parameterIndex, ByteStreamWriter x) -
Uses of ByteStreamWriter in org.postgresql.largeobject
Methods in org.postgresql.largeobject with parameters of type ByteStreamWriter Modifier and Type Method Description voidLargeObject. write(ByteStreamWriter writer)Writes some data from a given writer to the object. -
Uses of ByteStreamWriter in org.postgresql.util
Classes in org.postgresql.util that implement ByteStreamWriter Modifier and Type Class Description classByteBufferByteStreamWriterAByteStreamWriterthat writes ajava.nio.ByteBufferto a byte array parameter.(package private) classByteBuffersByteStreamWriterAByteStreamWriterthat writes ajava.nio.ByteBufferto a byte array parameter.Methods in org.postgresql.util that return ByteStreamWriter Modifier and Type Method Description static ByteStreamWriterByteStreamWriter. of(java.nio.ByteBuffer... buf)
-