Uses of Class
oracle.nosql.driver.Version
Package
Description
Contains the public API for using the Oracle NoSQL Database
as well as configuration and common parameter classes used in
database operations.
Contains the input and response classes used for Oracle NoSQL
Database operations.
-
Uses of Version in oracle.nosql.driver
Modifier and TypeMethodDescriptionstatic Version
Version.createVersion
(byte[] version) Creates a Version instance from a byte[] which may have been acquired from a query using the row_version() function which returns a FieldValue of type BINARY. -
Uses of Version in oracle.nosql.driver.ops
Modifier and TypeMethodDescriptionDeleteResult.getExistingVersion()
Returns the existing rowVersion
if available.PutResult.getExistingVersion()
Returns the existing rowVersion
if available.WriteMultipleResult.OperationResult.getExistingVersion()
Returns the existing row version associated with the key if available.DeleteRequest.getMatchVersion()
Returns theVersion
used for a match on a conditional delete.PutRequest.getMatchVersion()
Returns theVersion
used for a match on a conditional put.GetResult.getVersion()
Returns theVersion
of the row if the operation was successful, or null if the row does not exist.PutResult.getVersion()
Returns theVersion
of the new row if the operation was successful.WriteMultipleResult.OperationResult.getVersion()
Returns the version of the new row for put operation, or null if put operations did not succeed or the operation is delete operation.Modifier and TypeMethodDescriptionDeleteRequest.setMatchVersion
(Version version) Sets theVersion
to use for a conditional delete operation.PutRequest.setMatchVersion
(Version version) Sets theVersion
to use for a conditional put operation.