Uses of Class
oracle.pgx.api.frames.schema.ColumnDescriptor
-
Packages that use ColumnDescriptor Package Description oracle.pgx.api This package contains the main Java APIs.oracle.pgx.api.frames This package contains classes and utilities to build and manipulate PGX Frames.oracle.pgx.api.frames.schema This package contains classes related to the primitive data types as well as a class for column description. -
-
Uses of ColumnDescriptor in oracle.pgx.api
Method parameters in oracle.pgx.api with type arguments of type ColumnDescriptor Modifier and Type Method Description PgxFrame
PgxSession. createFrame(java.util.List<ColumnDescriptor> schema, java.util.Map<java.lang.String,java.lang.Iterable<?>> columnData, java.lang.String frameName)
Blocking version ofPgxSession.createFrameAsync(List, Map, String)
.PgxFuture<PgxFrame>
PgxSession. createFrameAsync(java.util.List<ColumnDescriptor> schema, java.util.Map<java.lang.String,java.lang.Iterable<?>> columnData, java.lang.String frameName)
Creates a new frame from client-side dataPgxFrameBuilder
PgxSession. createFrameBuilder(java.util.List<ColumnDescriptor> schema)
Creates a new frame builder with which it is possible to parameterize the building of the row frame -
Uses of ColumnDescriptor in oracle.pgx.api.frames
Methods in oracle.pgx.api.frames that return ColumnDescriptor Modifier and Type Method Description ColumnDescriptor[]
PgxFrame. getColumnDescriptors()
Returns a list containing the description of the different columns of the frames.abstract ColumnDescriptor
PgxFrameColumn. getDescriptor()
Return a description of the columnMethods in oracle.pgx.api.frames with parameters of type ColumnDescriptor Modifier and Type Method Description PgxFrameReaderType
PgxFrameReader. columns(ColumnDescriptor... columnDescriptors)
sets the columns to be loaded from their columnDescriptorsConstructor parameters in oracle.pgx.api.frames with type arguments of type ColumnDescriptor Constructor Description PgxFrameBuilder(SessionContext sessionContext, oracle.pgx.api.internal.Core core, java.util.List<ColumnDescriptor> schema, java.util.function.Function<oracle.pgx.api.internal.FrameMetaData,PgxFrame> buildCallback)
Create a PgxFrameBuilder, this will also create a FrameBuilder on the server. -
Uses of ColumnDescriptor in oracle.pgx.api.frames.schema
Methods in oracle.pgx.api.frames.schema that return ColumnDescriptor Modifier and Type Method Description static ColumnDescriptor
ColumnDescriptor. columnDescriptor(java.lang.String columnName, DataType columnType)
Create a ColumnDescriptor from the name of the column and type
-