You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+18-18
Original file line number
Diff line number
Diff line change
@@ -97,13 +97,13 @@ with C, those interactions are `unsafe`.
97
97
98
98
- Built-in connection pooling with `sqlx::Pool`.
99
99
100
-
- Row streaming. Data is read asynchronously from the database and decoded on-demand.
100
+
- Row streaming. Data is read asynchronously from the database and decoded ondemand.
101
101
102
102
- Automatic statement preparation and caching. When using the high-level query API (`sqlx::query`), statements are
103
-
prepared and cached per-connection.
103
+
prepared and cached perconnection.
104
104
105
105
- Simple (unprepared) query execution including fetching results into the same `Row` types used by
106
-
the high-level API. Supports batch execution and returning results from all statements.
106
+
the high-level API. Supports batch execution and returns results from all statements.
107
107
108
108
- Transport Layer Security (TLS) where supported ([MySQL] and [PostgreSQL]).
109
109
@@ -115,10 +115,10 @@ with C, those interactions are `unsafe`.
115
115
116
116
## Install
117
117
118
-
SQLx is compatible with the [`async-std`], [`tokio`] and [`actix`] runtimes; and, the [`native-tls`] and [`rustls`] TLS backends. When adding the dependency, you must chose a runtime feature that is `runtime` + `tls`.
118
+
SQLx is compatible with the [`async-std`], [`tokio`], and [`actix`] runtimes; and, the [`native-tls`] and [`rustls`] TLS backends. When adding the dependency, you must choose a runtime feature that is `runtime` + `tls`.
119
119
120
120
NOTE: these examples are for the coming 0.7 release, which is currently in an alpha cycle.
121
-
For the last stable release, 0.6.2, see [the previous verison of this document](https://github.com/launchbadge/sqlx/blob/v0.6.2/README.md).
121
+
For the last stable release, 0.6.2, see [the previous version of this document](https://github.com/launchbadge/sqlx/blob/v0.6.2/README.md).
0 commit comments