Enum oracle::StatementType [] [src]

pub enum StatementType {
    Select,
    Insert,
    Update,
    Delete,
    Merge,
    Create,
    Alter,
    Drop,
    Begin,
    Declare,
    Other(u32),
}

Statement type returned by Statement.statement_type().

Variants

SELECT statement

INSERT statement

UPDATE statement

DELETE statement

MERGE statement

CREATE statement

ALTER statement

DROP statement

PL/SQL statement without declare clause

PL/SQL statement with declare clause

Undocumented value in Oracle manual

Trait Implementations

impl Debug for StatementType
[src]

[src]

Formats the value using the given formatter.

impl Copy for StatementType
[src]

impl Clone for StatementType
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for StatementType
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Display for StatementType
[src]

[src]

Formats the value using the given formatter. Read more