You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
although the docs claim that odbc_safe is re-exported, I don't see it in the code. The part of the docs says:
Re-exports:
pub extern crate odbc_safe;
--
pub use ResultSetState::*;
pub use odbc_safe as safe;
When I couldn't import the odbc_safe because it's private, I checked the actual crate code:
pub use diagnostics::{DiagnosticRecord, GetDiagRec};
pub use result::Result;
pub use environment::*;
pub use connection::Connection;
pub use statement::*;
use odbc_object::OdbcObject;
use raii::Raii;
use result::{Return, into_result, try_into_option};
use odbc_safe as safe;
Can you please check and fix? Right now, I have to use odbc_safe as additional dependency.
Thanks.
The text was updated successfully, but these errors were encountered:
Hi,
although the docs claim that odbc_safe is re-exported, I don't see it in the code. The part of the docs says:
When I couldn't import the odbc_safe because it's private, I checked the actual crate code:
Can you please check and fix? Right now, I have to use odbc_safe as additional dependency.
Thanks.
The text was updated successfully, but these errors were encountered: