github.com/mattn/go-sqlite3
go
pkg:golang/github.com/mattn/go-sqlite3
983 Dependabot PRs
3 days ago
333 repositories
6 repositories
Recent PRs (filtered by: Open )
fix(deps): bump the external group across 1 directory with 22 updates
opentdf/platform #2659
chore(deps): bump github.com/mattn/go-sqlite3 from 1.14.22 to 1.14.32 in /apps/rest-api
developer-mesh/developer-mesh #18
[gomod] Bump the dependencies group across 1 directory with 9 updates
open-edge-platform/orch-cli #127
build(deps): Bump the security group with 13 updates
schemahero/schemahero #1216
chore(deps): bump github.com/mattn/go-sqlite3 from 1.14.17 to 1.14.32
Bump github.com/mattn/go-sqlite3 from 1.14.22 to 1.14.32
cdzombak/lychee-ai-organizer #16
go(deps): bump github.com/mattn/go-sqlite3 from 1.14.30 to 1.14.32
Bump github.com/mattn/go-sqlite3 from 1.14.30 to 1.14.32
build(deps): bump github.com/mattn/go-sqlite3 from 1.14.30 to 1.14.32
b1tray3r/isitstreamablebot #11
Bump github.com/mattn/go-sqlite3 from 1.14.24 to 1.14.32
maragudk/evals #12
Bump github.com/mattn/go-sqlite3 from 1.14.30 to 1.14.32
deps(go)(deps): Bump github.com/mattn/go-sqlite3 from 1.14.18 to 1.14.32
Bump github.com/mattn/go-sqlite3 from 1.14.28 to 1.14.32
dogecoinfoundation/fractal-engine #16
Bump the go group across 1 directory with 81 updates
Bump the go group across 1 directory with 80 updates
soitun/teleport #566
build(deps): Bump the security group with 12 updates
build(deps): bump github.com/mattn/go-sqlite3 from 1.14.7 to 1.14.32
canonical/go-dqlite #395
Bump the go group across 1 directory with 79 updates
Bump the go group across 1 directory with 79 updates
sigtrap/teleport #3255
Bump the go group across 1 directory with 78 updates
Tiamat-Tech/teleport #754
Bump the go group with 74 updates
gravitational/teleport #58155
:seedling:(deps): Bump the all-go-deps group across 1 directory with 5 updates
Bump github.com/mattn/go-sqlite3 from 1.14.28 to 1.14.32
opencloud-eu/reva #314
build(deps): Bump github.com/mattn/go-sqlite3 from 1.14.31 to 1.14.32
Dobefu/csb #26
Bump the go group across 1 directory with 76 updates
sigtrap/teleport #3243
Bump the go group across 1 directory with 77 updates
fix(deps): bump the external group across 1 directory with 21 updates
opentdf/platform #2646
Bump github.com/mattn/go-sqlite3 from 1.14.30 to 1.14.32 in /go
michaelabon/streamdeck-logitech-battery #28
Bump github.com/mattn/go-sqlite3 from 1.14.30 to 1.14.32
operator-framework/operator-registry #1745
Bump github.com/mattn/go-sqlite3 from 1.14.31 to 1.14.32
plainq/servekit #69
Bump github.com/mattn/go-sqlite3 from 1.14.27 to 1.14.32
baolhq/branded #10
build(deps): bump github.com/mattn/go-sqlite3 from 1.14.24 to 1.14.32
Bump github.com/mattn/go-sqlite3 from 1.14.28 to 1.14.32
build(deps): bump github.com/mattn/go-sqlite3 from 1.14.27 to 1.14.32
dreamsoft07/gocryptotrader #33
build(deps): bump github.com/mattn/go-sqlite3 from 1.14.29 to 1.14.32
Bump github.com/mattn/go-sqlite3 from 1.14.28 to 1.14.32
DevOops23b/GoSearch #201
Bump github.com/mattn/go-sqlite3 from 1.14.31 to 1.14.32 in /eventstore/sql
chore(deps): Bump github.com/mattn/go-sqlite3 from 1.14.15 to 1.14.32
build(deps): bump github.com/mattn/go-sqlite3 from 1.14.29 to 1.14.32 in /services/backend
Fx64b/video-archiver #312
deps(go)(deps): bump github.com/mattn/go-sqlite3 from 1.14.28 to 1.14.32
devDudu-21/product-management-app #23
build(deps): bump github.com/mattn/go-sqlite3 from 1.14.31 to 1.14.32
Bump github.com/mattn/go-sqlite3 from 1.14.31 to 1.14.32 in the not-major group
darlinggo/pan #34
Bump github.com/mattn/go-sqlite3 from 1.14.30 to 1.14.32
offsoc/sliver #52
Bump github.com/mattn/go-sqlite3 from 1.14.24 to 1.14.32
B87/go-crit #7
build(deps): bump github.com/mattn/go-sqlite3 from 1.14.30 to 1.14.32
zerok/webmentiond #181
build(deps): bump the all-dependencies group with 2 updates
chore(deps): bump github.com/mattn/go-sqlite3 from 1.14.17 to 1.14.32
CentralBlockchainEntertainment/Central-Blockchain #143
chore(deps): bump github.com/mattn/go-sqlite3 from 1.14.30 to 1.14.32
build(deps): bump the go group across 1 directory with 26 updates
keboola/keboola-as-code #2413
chore(deps): bump github.com/mattn/go-sqlite3 from 1.14.17 to 1.14.32
jeebster/osmosis #296
Package Details
| Name: | github.com/mattn/go-sqlite3 |
| Ecosystem: | go |
| PURL Type: | golang |
| Package URL: | pkg:golang/github.com/mattn/go-sqlite3 |
| JSON API: | View JSON |
Package Information
Package sqlite3 provides interface to SQLite3 databases. This works as a driver for database/sql. Installation Currently, go-sqlite3 supports the following data types. You can write your own extension module for sqlite3. For example, below is an extension for a Regexp matcher operation. It needs to be built as a so/dll shared library. And you need to register the extension module like below. Then, you can use this extension. You can hook and inject your code when the connection is established by setting ConnectHook to get the SQLiteConn. You can also use database/sql.Conn.Raw (Go >= 1.13): If you want to register Go functions as SQLite extension functions you can make a custom driver by calling RegisterFunction from ConnectHook. You can then use the custom driver by passing its name to sql.Open. See the documentation of RegisterFunc for more details.
| Repository: | https://github.com/mattn/go-sqlite3 |
| Homepage: | https://github.com/mattn/go-sqlite3 |
| Latest Release: |
v2.0.3+incompatible
almost 6 years ago |
| Dependent Repos: | 63,599 |
| Dependent Packages: | 14,553 |
| Ranking: | Top 0.0195% by dependent repos Top 0.0119% by dependent pkgs |