From f1cc12569ccb6f501fc99f1417be750270d05e73 Mon Sep 17 00:00:00 2001 From: Michael Lynch Date: Mon, 26 May 2025 06:48:53 -0400 Subject: [PATCH] Link to example of incremental BLOB I/O usage (#280) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 94fd995..e8b76a8 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ db.QueryRow(`SELECT sqlite_version()`).Scan(&version) ### Advanced features -- [incremental BLOB I/O](https://sqlite.org/c3ref/blob_open.html) +- [incremental BLOB I/O](https://sqlite.org/c3ref/blob_open.html) ([example](ext/blobio/blob_test.go)) - [nested transactions](https://sqlite.org/lang_savepoint.html) - [custom functions](https://sqlite.org/c3ref/create_function.html) - [virtual tables](https://sqlite.org/vtab.html)