[−][src]Enum odbc::ffi::FreeStmtOption
SQL Free Statement options
Variants
Closes the cursor associated with StatementHandle (if one was defined) and discards all
pending results. The application can reopen this cursor later by executing a SELECT
statement again with the same or different parameter values. If no cursor is open, this
option has no effect for the application. SQLCloseCursor
can also be called to close a
cursor.
Sets the SQL_DESC_COUNT
field of the ARD to 0, releasing all column buffers bound by
SQLBindCol
for the given StatementHandle. This does not unbind the bookmark column; to do
that, the SQL_DESC_DATA_PTR
field of the ARD for the bookmark column is set to NULL.
Notice that if this operation is performed on an explicitly allocated descriptor that is
shared by more than one statement, the operation will affect the bindings of all statements
that share the descriptor.
Sets the SQL_DESC_COUNT
field of the APD to 0, releasing all parameter buffers set by
SQLBindParameter
for the given StatementHandle. If this operation is performed on an
explicitly allocated descriptor that is shared by more than one statement, this operation
will affect the bindings of all the statements that share the descriptor.
Trait Implementations
impl Clone for FreeStmtOption
[src]
fn clone(&self) -> FreeStmtOption
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for FreeStmtOption
[src]
impl StructuralPartialEq for FreeStmtOption
[src]
impl Copy for FreeStmtOption
[src]
impl StructuralEq for FreeStmtOption
[src]
impl PartialEq<FreeStmtOption> for FreeStmtOption
[src]
fn eq(&self, other: &FreeStmtOption) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl Eq for FreeStmtOption
[src]
Auto Trait Implementations
impl Send for FreeStmtOption
impl Sync for FreeStmtOption
impl Unpin for FreeStmtOption
impl UnwindSafe for FreeStmtOption
impl RefUnwindSafe for FreeStmtOption
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,