[−][src]Trait odbc_api::Parameters
SQL Parameters used to execute a query.
ODBC allows to place question marks (?) in the statement text as placeholders. For each such
placeholder a parameter needs to be bound to the statement before executing it.
Required methods
unsafe fn bind_input_parameters(
&self,
stmt: &mut Statement<'_>
) -> Result<(), Error>
&self,
stmt: &mut Statement<'_>
) -> Result<(), Error>
Safety
Implementers should take care that the values bound by this method to the statement live at
least for the Duration of self. The most straight forward way of achieving this is of
course, to bind members.
Implementations on Foreign Types
impl Parameters for ()[src]
The unit type is used to signal no parameters.
impl<A, B> Parameters for (A, B) where
A: SingleParameter,
B: SingleParameter, [src]
A: SingleParameter,
B: SingleParameter,
impl<T, '_> Parameters for &'_ [T] where
T: SingleParameter, [src]
Loading content...T: SingleParameter,
Implementors
impl<T> Parameters for T where
T: SingleParameter, [src]
T: SingleParameter,