aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorDavid Vassallo <davevassallo@gmail.com>2022-10-19 01:31:09 +0300
committerGitHub <noreply@github.com>2022-10-18 18:31:09 -0400
commit0b3708425e1178a6d04a04a00662a11ad7e1a390 (patch)
treee4e6c054cb64315cd20dc85fc7c0cce7a30daefe /README.md
parentCross Compiling for Mac OS via `musl-cross` (diff)
downloadgolite-0b3708425e1178a6d04a04a00662a11ad7e1a390.tar.gz
golite-0b3708425e1178a6d04a04a00662a11ad7e1a390.tar.xz
Update README.md to include vtable feature (#1100)
Added documentation for sqlite_vtable build tag to the README.
Diffstat (limited to 'README.md')
-rw-r--r--README.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/README.md b/README.md
index 9db6da6..931b02e 100644
--- a/README.md
+++ b/README.md
@@ -179,6 +179,7 @@ go build --tags "icu json1 fts5 secure_delete"
| Secure Delete (FAST) | sqlite_secure_delete_fast | For more information see [PRAGMA secure_delete](https://www.sqlite.org/pragma.html#pragma_secure_delete) |
| Tracing / Debug | sqlite_trace | Activate trace functions |
| User Authentication | sqlite_userauth | SQLite User Authentication see [User Authentication](#user-authentication) for more information. |
+| Virtual Tables | sqlite_vtable | SQLite Virtual Tables see [SQLite Official VTABLE Documentation](https://www.sqlite.org/vtab.html) for more information, and a [full example here](https://github.com/mattn/go-sqlite3/tree/master/_example/vtable) |
# Compilation