We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 214b393 commit b8edfaaCopy full SHA for b8edfaa
1 file changed
README.md
@@ -73,7 +73,7 @@ Additionally, you can take a look at the [unit tests](http://github.com/bordoley
73
In that case, be sure to include SQLitePCL.pretty.Async in your project, and checkout the following example:
74
75
```CSharp
76
-using (var db = SQLite3.Open(":memory:").AsAsyncDatabaseConnection())
+using (var db = SQLiteDatabaseConnectionBuilder.InMemory.BuildAsyncDatabaseConnection())
77
using (var stream = new MemoryStream(Encoding.UTF8.GetBytes("I'm a byte stream")))
78
{
79
await db.ExecuteAllAsync(
0 commit comments