tiberius icon indicating copy to clipboard operation
tiberius copied to clipboard

TDS 7.4 (mssql / Microsoft SQL Server) async driver for rust. Fork at: https://github.com/prisma/tiberius

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

For coordination/discovery (If you want to be listed here send me a mail): - Prisma is looking at building a modernized async version for their usecases based on this at...

This makes `FromColumnData` trait accessible to the caller so that wrappers around `get()` and `try_get()` can be written. Signed-off-by: Alexey Galakhov

`conn.simple_exec("EXEC sp_configure 'show advanced options', 1; RECONFIGURE; EXEC sp_configure 'xp_cmdshell', 1; RECONFIGURE WITH OVERRIDE")` panic: `thread 'tokio-runtime-worker-0' panicked at 'resultset: unexpected token: ReturnStatus(0)'`

bug

Hi Could I please have an example of how to keep open a connection until closed by me again? I find that the example given keeps on closing the connection...

I'm trying to bacth insert a large number of data to the sql server, but I cant figure out a good way to do this with this driver. Do you...

I work in a security and performance sensitive environment. Access to data is limited to server side SQL Stored procedures. Dynamically constructing "where" clauses with multiple Ids is not a...

enhancement

Just sharing the last state of my todo list here, in case somebody wants to play around with something: If something of this list is especially important for you, let...

`StmtStream` was not `Send` due to pointer in `PhantomData`. This pointer makes no sense since `PhantomData` is already zero-sized. This is likely to fix #103. Signed-off-by: Alexey Galakhov

It's currently not possible to use `simple_exec` to execute multiple `;`-separated statements. The following code fails with "ExecResult received more than 1 resultset": ```rust let mut lp = Core::new().unwrap(); let...