Enum mimir::enums::ODPIFetchMode[][src]

#[repr(u32)]
pub enum ODPIFetchMode { Next, First, Last, Prior, Absolte, Relative, }

This enumeration identifies the mode to use when scrolling the cursor to a new location using the function Statement::scroll().

Variants

Scroll the cursor to the next row in the result set. The offset is ignored when using this mode.

Scroll the cursor to the first row in the result set. The offset is ignored when using this mode.

Scroll the cursor to the last row in the result set. The offset is ignored when using this mode.

Scroll the cursor to the previous row in the result set. The offset is ignored when using this mode.

Scroll the cursor to the row identified by the offset parameter using absolute positioning.

Scroll the cursor to the row identified by the offset parameter using relative positioning. A positive number will move forward in the result set while a negative number will move backwards in the result set.

Trait Implementations

impl Clone for ODPIFetchMode
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for ODPIFetchMode
[src]

impl Debug for ODPIFetchMode
[src]

Formats the value using the given formatter. Read more

impl Eq for ODPIFetchMode
[src]

impl Hash for ODPIFetchMode
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl PartialEq for ODPIFetchMode
[src]

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

This method tests for !=.

Auto Trait Implementations