| Package | Description |
|---|---|
| io.r2dbc.postgresql.api |
R2DBC driver API with Postgres-specific extensions.
|
| Modifier and Type | Method and Description |
|---|---|
CopyInBuilder |
PostgresqlConnection.copyIn(String sql)
Obtain a
CopyInBuilder to configure a COPY FROM STDIN operation for very fast copying into a database table. |
default CopyInBuilder |
CopyInBuilder.from(byte[] stdin)
Configure an input buffer that is written to a single
CopyData frame. |
default CopyInBuilder |
CopyInBuilder.from(byte[] stdin,
int offset,
int length)
Configure an input buffer along with
offset and length whose specified chunk is written to a single CopyData frame. |
default CopyInBuilder |
CopyInBuilder.from(io.netty.buffer.ByteBuf stdin)
Configure an input buffer that is written to a single
CopyData frame. |
default CopyInBuilder |
CopyInBuilder.from(ByteBuffer stdin)
Configure an input buffer that is written to a single
CopyData frame. |
default CopyInBuilder |
CopyInBuilder.from(Publisher<io.netty.buffer.ByteBuf> stdin)
|
CopyInBuilder |
CopyInBuilder.fromMany(Publisher<? extends Publisher<io.netty.buffer.ByteBuf>> stdin)
|
Copyright © 2023. All rights reserved.