Struct odbc_api::Preallocated
source · [−]pub struct Preallocated<'open_connection> { /* private fields */ }
Expand description
A preallocated SQL statement handle intended for sequential execution of different queries. See
crate::Connection::preallocate
.
Example
use odbc_api::{Connection, Error};
use std::io::{self, stdin, Read};
fn interactive(conn: &Connection) -> io::Result<()>{
let mut statement = conn.preallocate().unwrap();
let mut query = String::new();
stdin().read_line(&mut query)?;
while !query.is_empty() {
match statement.execute(&query, ()) {
Err(e) => println!("{}", e),
Ok(None) => println!("No results set generated."),
Ok(Some(cursor)) => {
// ...print cursor contents...
},
}
stdin().read_line(&mut query)?;
}
Ok(())
}
Implementations
sourceimpl<'o> Preallocated<'o>
impl<'o> Preallocated<'o>
sourcepub fn execute(
&mut self,
query: &str,
params: impl ParameterRefCollection
) -> Result<Option<CursorImpl<&mut StatementImpl<'o>>>, Error>
pub fn execute(
&mut self,
query: &str,
params: impl ParameterRefCollection
) -> Result<Option<CursorImpl<&mut StatementImpl<'o>>>, Error>
Executes a statement. This is the fastest way to sequentially execute different SQL Statements.
Parameters
query
: The text representation of the SQL statement. E.g. “SELECT * FROM my_table;”.params
:?
may be used as a placeholder in the statement text. You can use()
to represent no parameters. Check thecrate::parameter
module level documentation for more information on how to pass parameters.
Return
Returns Some
if a cursor is created. If None
is returned no cursor has been created (
e.g. the query came back empty). Note that an empty query may also create a cursor with zero
rows. Since we want to reuse the statement handle a returned cursor will not take ownership
of it and instead burrow it.
Example
use odbc_api::{Connection, Error};
use std::io::{self, stdin, Read};
fn interactive(conn: &Connection) -> io::Result<()>{
let mut statement = conn.preallocate().unwrap();
let mut query = String::new();
stdin().read_line(&mut query)?;
while !query.is_empty() {
match statement.execute(&query, ()) {
Err(e) => println!("{}", e),
Ok(None) => println!("No results set generated."),
Ok(Some(cursor)) => {
// ...print cursor contents...
},
}
stdin().read_line(&mut query)?;
}
Ok(())
}
sourcepub fn into_statement(self) -> StatementImpl<'o>
pub fn into_statement(self) -> StatementImpl<'o>
Transfer ownership to the underlying statement handle.
The resulting type is one level of indirection away from the raw pointer of the ODBC API. It
no longer has any guarantees about bound buffers, but is still guaranteed to be a valid
allocated statement handle. This serves together with
crate::handles::StatementImpl::into_sys
or crate::handles::Statement::as_sys
this
serves as an escape hatch to access the functionality provided by crate::sys
not yet
accessible through safe abstractions.
sourcepub fn tables(
&mut self,
catalog_name: &str,
schema_name: &str,
table_name: &str,
table_type: &str
) -> Result<CursorImpl<&mut StatementImpl<'o>>, Error>
pub fn tables(
&mut self,
catalog_name: &str,
schema_name: &str,
table_name: &str,
table_type: &str
) -> Result<CursorImpl<&mut StatementImpl<'o>>, Error>
List tables, schemas, views and catalogs of a datasource.
Parameters
catalog_name
: Filter result by catalog name. Accept search patterns. Use%
to match any number of characters. Use_
to match exactly on character. Use\
to escape characeters.schema_name
: Filter result by schema. Accepts patterns in the same way ascatalog_name
.table_name
: Filter result by table. Accepts patterns in the same way ascatalog_name
.table_type
: Filters results by table type. E.g: ‘TABLE’, ‘VIEW’. This argument accepts a comma separeted list of table types. Omit it to not filter the result by table type at all.
sourcepub fn columns(
&mut self,
catalog_name: &str,
schema_name: &str,
table_name: &str,
column_name: &str
) -> Result<CursorImpl<&mut StatementImpl<'o>>, Error>
pub fn columns(
&mut self,
catalog_name: &str,
schema_name: &str,
table_name: &str,
column_name: &str
) -> Result<CursorImpl<&mut StatementImpl<'o>>, Error>
A cursor describing columns of all tables matching the patterns. Patterns support as
placeholder %
for multiple characters or _
for a single character. Use \
to escape.The
returned cursor has the columns:
TABLE_CAT
, TABLE_SCHEM
, TABLE_NAME
, COLUMN_NAME
, DATA_TYPE
, TYPE_NAME
,
COLUMN_SIZE
, BUFFER_LENGTH
, DECIMAL_DIGITS
, NUM_PREC_RADIX
, NULLABLE
,
REMARKS
, COLUMN_DEF
, SQL_DATA_TYPE
, SQL_DATETIME_SUB
, CHAR_OCTET_LENGTH
,
ORDINAL_POSITION
, IS_NULLABLE
.
In addition to that there may be a number of columns specific to the data source.
Auto Trait Implementations
impl<'open_connection> RefUnwindSafe for Preallocated<'open_connection>
impl<'open_connection> !Send for Preallocated<'open_connection>
impl<'open_connection> !Sync for Preallocated<'open_connection>
impl<'open_connection> Unpin for Preallocated<'open_connection>
impl<'open_connection> UnwindSafe for Preallocated<'open_connection>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more