tiberius
tiberius copied to clipboard
TDS 7.4 (mssql / Microsoft SQL Server) async driver for rust. Fork at: https://github.com/prisma/tiberius
```rust let future = SqlConnection::connect(self.connection_string.as_str()) .and_then(|conn| { conn.simple_query("SELECT TOP(10) * FROM [dbo].[Test]") .for_each(|row| { let guid : Guid = row.get(0); Ok(()) }) }); current_thread::block_on_all(future).unwrap(); ``` I'm trying to parse a...
* Add BigChar decoder support * Add iter() to QueryRow to allow itterating over the columns * Export needed structs and enums to iterate over a column set without knowing...
The visibility and encapsulation of some items currently isn't quite optimal.