note
VeloxDB is still in beta and APIs are subject to change. We are in the process of completing the documentation, so some sections may be incomplete or empty at this time.
Class DbAPIOperationType
Specifies possible types of the database operations with regards to whether the operation performs only read or both read and write operations on the database.
Inheritance
System.Object
DbAPIOperationType
Namespace: VeloxDB.Protocol
Assembly: vlxc.dll
Syntax
public sealed class DbAPIOperationType : Enum
Fields
Read
Indicates that the operation performs only read operations on the database. The underlying transaction created for the operation is of read type.
Declaration
public const DbAPIOperationType Read
Field Value
Type | Description |
---|---|
DbAPIOperationType |
ReadWrite
Indicates that the operation performs both read and write operations on the database. The underlying transaction created for the operation is of read-write type.
Declaration
public const DbAPIOperationType ReadWrite
Field Value
Type | Description |
---|---|
DbAPIOperationType |