@@ -30,10 +30,10 @@ db.QueryRow(`SELECT sqlite_version()`).Scan(&version)
30
30
31
31
- [ ` github.com/ncruces/go-sqlite3 ` ] ( https://pkg.go.dev/github.com/ncruces/go-sqlite3 )
32
32
wraps the [ C SQLite API] ( https://sqlite.org/cintro.html )
33
- ([ example usage ] ( https://pkg.go.dev/github.com/ncruces/go-sqlite3#example-package ) ).
33
+ ([ example] ( https://pkg.go.dev/github.com/ncruces/go-sqlite3#example-package ) ).
34
34
- [ ` github.com/ncruces/go-sqlite3/driver ` ] ( https://pkg.go.dev/github.com/ncruces/go-sqlite3/driver )
35
35
provides a [ ` database/sql ` ] ( https://pkg.go.dev/database/sql ) driver
36
- ([ example usage ] ( https://pkg.go.dev/github.com/ncruces/go-sqlite3/driver#example-package ) ).
36
+ ([ example] ( https://pkg.go.dev/github.com/ncruces/go-sqlite3/driver#example-package ) ).
37
37
- [ ` github.com/ncruces/go-sqlite3/embed ` ] ( https://pkg.go.dev/github.com/ncruces/go-sqlite3/embed )
38
38
embeds a build of SQLite into your application.
39
39
- [ ` github.com/ncruces/go-sqlite3/vfs ` ] ( https://pkg.go.dev/github.com/ncruces/go-sqlite3/vfs )
@@ -43,13 +43,20 @@ db.QueryRow(`SELECT sqlite_version()`).Scan(&version)
43
43
44
44
### Advanced features
45
45
46
- - [ incremental BLOB I/O] ( https://sqlite.org/c3ref/blob_open.html ) ([ example] ( ext/blobio/blob_test.go ) )
46
+ - [ incremental BLOB I/O] ( https://sqlite.org/c3ref/blob_open.html )
47
+ ([ example] ( https://pkg.go.dev/github.com/ncruces/go-sqlite3/ext/blobio#example-package ) )
47
48
- [ nested transactions] ( https://sqlite.org/lang_savepoint.html )
49
+ ([ example] ( https://pkg.go.dev/github.com/ncruces/go-sqlite3/driver#example-Savepoint ) )
48
50
- [ custom functions] ( https://sqlite.org/c3ref/create_function.html )
51
+ ([ example] ( https://pkg.go.dev/github.com/ncruces/go-sqlite3#example-Conn.CreateFunction ) )
49
52
- [ virtual tables] ( https://sqlite.org/vtab.html )
50
- - [ custom VFSes] ( vfs/README.md#custom-vfses )
53
+ ([ example] ( https://pkg.go.dev/github.com/ncruces/go-sqlite3#example-CreateModule ) )
54
+ - [ custom VFSes] ( https://sqlite.org/vfs.html )
55
+ ([ examples] ( vfs/README.md#custom-vfses ) )
51
56
- [ online backup] ( https://sqlite.org/backup.html )
57
+ ([ example] ( https://pkg.go.dev/github.com/ncruces/go-sqlite3/driver#Conn ) )
52
58
- [ JSON support] ( https://sqlite.org/json1.html )
59
+ ([ example] ( https://pkg.go.dev/github.com/ncruces/go-sqlite3/driver#example-package-Json ) )
53
60
- [ math functions] ( https://sqlite.org/lang_mathfunc.html )
54
61
- [ full-text search] ( https://sqlite.org/fts5.html )
55
62
- [ geospatial search] ( https://sqlite.org/geopoly.html )
@@ -117,4 +124,4 @@ and features we're working on, planning to work on, or asking for help with.
117
124
- [ ` modernc.org/sqlite ` ] ( https://pkg.go.dev/modernc.org/sqlite )
118
125
- [ ` crawshaw.io/sqlite ` ] ( https://pkg.go.dev/crawshaw.io/sqlite )
119
126
- [ ` github.com/mattn/go-sqlite3 ` ] ( https://pkg.go.dev/github.com/mattn/go-sqlite3 )
120
- - [ ` github.com/zombiezen/go-sqlite ` ] ( https://pkg.go.dev/github.com/zombiezen/go-sqlite )
127
+ - [ ` github.com/zombiezen/go-sqlite ` ] ( https://pkg.go.dev/github.com/zombiezen/go-sqlite )
0 commit comments