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.
Enum 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.
Namespace: VeloxDB.Protocol
Assembly: vlxc.dll
Syntax
public enum DbAPIOperationType : byte
Fields
Name | Description |
---|---|
Read | Indicates that the operation performs only read operations on the database. The underlying transaction created for the operation is of read type. |
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. |