1
0
mirror of https://github.com/bitwarden/server synced 2026-02-22 04:13:43 +00:00

First complete implementation of Database trait for sql server

This commit is contained in:
Matt Gibson
2025-10-21 13:16:05 -07:00
parent 7bb8296a2c
commit bbd1a230a6
8 changed files with 1616 additions and 21 deletions

View File

@@ -6,7 +6,7 @@ pub use pool::ConnectionManager as MsSqlConnectionManager;
pub use pool::{OnConnectError};
// re-expose tiberius types for convenience
pub use tiberius::{error::Error as MsDbError, Column, Row, ToSql};
pub use tiberius::{error::Error as MsDbError, Column, Row, FromSql, ToSql, IntoRow, TokenRow, ColumnData};
// re-expose bb8 types for convenience
pub type Pool = bb8::Pool<MsSqlConnectionManager>;