Skip to content

Commit

Permalink
Link to connection pooling doc in Connection doc
Browse files Browse the repository at this point in the history
  • Loading branch information
pacman82 committed Sep 9, 2022
1 parent 03d8c6a commit 427f8a6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions odbc-api/src/connection.rs
Expand Up @@ -50,6 +50,9 @@ impl<'conn> Drop for Connection<'conn> {

/// The connection handle references storage of all information about the connection to the data
/// source, including status, transaction state, and error information.
///
/// If you want to enable the connection pooling support build into the ODBC driver manager have a
/// look at [`crate::Environment::set_connection_pooling`].
pub struct Connection<'c> {
connection: handles::Connection<'c>,
}
Expand Down

1 comment on commit 427f8a6

@baoyachi
Copy link
Contributor

@baoyachi baoyachi commented on 427f8a6 Sep 9, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The documentation is very detailed. So great. 👍

Please sign in to comment.