Skip to content

Commit 040a026

Browse files
committed
More examples.
1 parent e678040 commit 040a026

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

README.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ db.QueryRow(`SELECT sqlite_version()`).Scan(&version)
3030

3131
- [`github.com/ncruces/go-sqlite3`](https://pkg.go.dev/github.com/ncruces/go-sqlite3)
3232
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)).
3434
- [`github.com/ncruces/go-sqlite3/driver`](https://pkg.go.dev/github.com/ncruces/go-sqlite3/driver)
3535
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)).
3737
- [`github.com/ncruces/go-sqlite3/embed`](https://pkg.go.dev/github.com/ncruces/go-sqlite3/embed)
3838
embeds a build of SQLite into your application.
3939
- [`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)
4343

4444
### Advanced features
4545

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))
4748
- [nested transactions](https://sqlite.org/lang_savepoint.html)
49+
([example](https://pkg.go.dev/github.com/ncruces/go-sqlite3/driver#example-Savepoint))
4850
- [custom functions](https://sqlite.org/c3ref/create_function.html)
51+
([example](https://pkg.go.dev/github.com/ncruces/go-sqlite3#example-Conn.CreateFunction))
4952
- [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))
5156
- [online backup](https://sqlite.org/backup.html)
57+
([example](https://pkg.go.dev/github.com/ncruces/go-sqlite3/driver#Conn))
5258
- [JSON support](https://sqlite.org/json1.html)
59+
([example](https://pkg.go.dev/github.com/ncruces/go-sqlite3/driver#example-package-Json))
5360
- [math functions](https://sqlite.org/lang_mathfunc.html)
5461
- [full-text search](https://sqlite.org/fts5.html)
5562
- [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.
117124
- [`modernc.org/sqlite`](https://pkg.go.dev/modernc.org/sqlite)
118125
- [`crawshaw.io/sqlite`](https://pkg.go.dev/crawshaw.io/sqlite)
119126
- [`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

Comments
 (0)