tiberius icon indicating copy to clipboard operation
tiberius copied to clipboard

TDS 7.2+ (Microsoft SQL Server) driver for Rust

Results 108 tiberius issues
Sort by recently updated
recently updated
newest added

In the documentation I cannot find does it works with Azure SQL and could we use AAD auth. The table of supported versions lists only SQL Server versions and all...

TLSHandshake is awaited even though encryption is advertised as being off - EncryptionLevel::Off Here is the code: ```rust #[tokio::main] async fn main() -> Result { tracing_subscriber::fmt() .with_max_level(Level::TRACE) .init(); let mut...

This PR adds an `Unimplemented` to the `Error` enum to indicate something that is not implemented, in place of `todo!` in the code. `todo!` causes an error in the programme...

Bulk Inserting large text values seems to cause this: `Token error: 'Invalid column type from bcp client for colid 8.' on server MYSERVER executing on line 1 (code: 4816, state:...

Mio 0.7 [has support](https://docs.rs/mio/0.7.9/x86_64-pc-windows-msvc/mio/windows/struct.NamedPipe.html) for Windows named pipes. The author of mysql_async (blackbeam) [is having a PR open](https://github.com/tokio-rs/tokio/pull/3388) to Tokio to support them in the runtime. I wrote a small...

kind/docs
kind/improvement
topic: sql server

This has not bubbled up yet, but I highly suspect we're going to hit problems when cancelling futures reading or writing data with Tiberius. This means, if we use `select`...

tech/engines
kind/bug

I have a database with `DateTime` field like this `1899-12-30 00:00:00.000`. Trying to read this field with `time` feature results in panic - attempting to multiply with overflow: ``` //...

Hi, I am trying to bulk insert into a table with TEXT column. This is my code: ColumnType::Text => { let value: Option = row.get(order); let value = value.map(|v| v.to_string());...

I get all these errors when I use the "rustls" feature. Am I doing something wrong? ``` error[E0428]: the name `create_tls_stream` is defined multiple times --> /Users//.cargo/registry/src/index.crates.io-6f17d22bba15001f/tiberius-0.12.2/src/client/tls_stream.rs:31:1 | 23 |...

As sql server allows empty space in column name, make it adaptable to columns with space in its name.