dpiAuthMode

Type Alias dpiAuthMode 

Source
pub type dpiAuthMode = u32;
Expand description

This enumeration identifies the mode to use when authorizing connections to the database.

ValueDescription
DPI_MODE_AUTH_DEFAULTDefault value used when creating connections.
DPI_MODE_AUTH_PRELIMUsed together with DPI_MODE_AUTH_SYSDBA or DPI_MODE_AUTH_SYSOPER to authenticate for certain administrative tasks (such as starting up or shutting down the database).
DPI_MODE_AUTH_SYSASMAuthenticates with SYSASM access. The use of this value requires Oracle Client 12.1 or higher.
DPI_MODE_AUTH_SYSBKPAuthenticates with SYSBACKUP access. The use of this value requires Oracle Client 12.1 or higher.
DPI_MODE_AUTH_SYSDBAAuthenticates with SYSDBA access.
DPI_MODE_AUTH_SYSDGDAuthenticates with SYSDG access. The use of this value requires Oracle Client 12.1 or higher.
DPI_MODE_AUTH_SYSKMTAuthenticates with SYSKM access. The use of this value requires Oracle Client 12.1 or higher.
DPI_MODE_AUTH_SYSOPERAuthenticates with SYSOPER access.
DPI_MODE_AUTH_SYSRACAuthenticates with SYSRAC access. The use of this value requires Oracle Client 12.2 or higher.