sqlx/README.md

31 lines
1.3 KiB
Markdown
Raw Normal View History

2019-08-07 05:47:32 +00:00
# SQLx
2019-08-22 04:51:32 +00:00
2019-09-11 06:31:12 +00:00
The Rust SQL Toolkit.
2019-08-07 05:47:32 +00:00
* **Asynchronous**. Handle thousands of database connections from a single thread.
* **Fast**. _TO BE WRITTEN_
2019-08-22 04:53:51 +00:00
* **Native**. SQLx is a pure Rust<sub></sub> toolkit for SQL. Where possible, drivers are written from scratch, in Rust, utilizing the modern ecosystem for asynchronous network services development.
2019-08-22 04:51:32 +00:00
2019-08-07 05:47:32 +00:00
* **Agnostic**. SQLx is agnostic over the database engine and can operate against a variety of database backends with the backend chosen **at compile-time** through generic constraints **or at runtime** with a slight performance loss (due to dynamic dispatch).
2019-09-11 06:31:12 +00:00
<sub><sup>† The SQLite driver (which does not yet exist) will use the libsqlite3 C library as SQLite is an embedded database (the only way we could be pure Rust for SQLite is by porting _all_ of SQLite to Rust).</sup></sub>
2019-06-09 16:38:10 +00:00
2019-06-06 13:02:55 +00:00
## License
Licensed under either of
* Apache License, Version 2.0
([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
* MIT license
([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
at your option.
## Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in the work by you, as defined in the Apache-2.0 license, shall be
dual licensed as above, without any additional terms or conditions.