Package | Description |
---|---|
oracle.pgx.api.frames |
This package contains classes and utilities to build and manipulate PGX Frames.
|
oracle.pgx.api.frames.functions |
This package contains APIs to work with PGX Frames.
|
Modifier and Type | Method and Description |
---|---|
PgxFrame |
PgxFrame.renameColumns(ColumnRenaming... columnsWithRenamings)
Returns a new PgxFrame in which the specified columns are renamed as specified Blocking version of
PgxFrame.renameColumnsAsync(ColumnRenaming...) . |
PgxFuture<PgxFrame> |
PgxFrame.renameColumnsAsync(ColumnRenaming... columnsWithRenamings)
Returns a new PgxFrame in which the specified columns are renamed as specified
|
PgxFrame |
PgxFrame.renameColumnsInPlace(ColumnRenaming... columnsWithRenamings)
Modifies the PgxFrame to rename the specified columns as specified Blocking version of
PgxFrame.renameColumnsInPlaceAsync(ColumnRenaming...) . |
PgxFuture<PgxFrame> |
PgxFrame.renameColumnsInPlaceAsync(ColumnRenaming... columnsWithRenamings)
Modifies the PgxFrame to rename the specified columns as specified
|
Modifier and Type | Method and Description |
---|---|
static ColumnRenaming |
ColumnRenaming.renaming(java.lang.String columnName, java.lang.String newColumnName)
Create a new column renaming from the old column name to the new column name
|