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: Closed )
chore(deps): bump github.com/mattn/go-sqlite3 from 1.14.22 to 1.14.32
deps(deps): Bump the go-dependencies group across 1 directory with 21 updates
deps(deps): Bump the go-dependencies group with 2 updates
build(deps): bump the minor-and-patch group across 1 directory with 15 updates
chore(deps): bump the minor-and-patch group across 1 directory with 69 updates
Bump the go group across 1 directory with 119 updates
jtagcat/teleport #117
chore(deps): bump github.com/mattn/go-sqlite3 from 1.14.30 to 1.14.32 in /backend in the all-go group
NBISweden/urdr #1205
chore(deps): bump the minor-and-patch group with 65 updates
chore(deps): bump the minor-and-patch group across 1 directory with 32 updates
Bump github.com/mattn/go-sqlite3 from 1.14.22 to 1.14.32
ai-code-review-benchmarks/graphite-grafana #9
build(deps): bump the go group across 1 directory with 42 updates
keboola/keboola-as-code #2419
chore(deps): bump the minor-and-patch group across 1 directory with 27 updates
build(deps): bump the minor-and-patch group across 1 directory with 9 updates
fix(deps): bump the external group across 1 directory with 23 updates
opentdf/platform #2670
build(deps): Bump the security group across 1 directory with 14 updates
Bump github.com/mattn/go-sqlite3 from 1.14.28 to 1.14.32 in the dependencies group
Bump the go group across 1 directory with 99 updates
build(deps): bump the minor-and-patch group across 1 directory with 8 updates
chore(deps): bump github.com/mattn/go-sqlite3 from 1.14.16 to 1.14.32
faza/lfs-test #255
build(deps): bump the go group with 29 updates
keboola/keboola-as-code #2414
chore(deps): bump the go_modules group across 1 directory with 14 updates
bsv-blockchain/block-headers-service #344
build(deps): Bump the security group across 1 directory with 13 updates
chore(deps): bump github.com/mattn/go-sqlite3 from 1.14.17 to 1.14.32
iqlusioninc/osmosis #246
go(deps): bump the go-dependencies group across 1 directory with 10 updates
lycp152/UniversityEntranceExamSubjectNavi #91
Bump the go group across 1 directory with 79 updates
soitun/teleport #554
chore(deps): bump github.com/mattn/go-sqlite3 from 1.14.31 to 1.14.32
erdnaxeli/rudolphe #113
Bump github.com/mattn/go-sqlite3 from 1.14.17 to 1.14.32
Fury-Labs/furya #197
Bump github.com/mattn/go-sqlite3 from 1.14.30 to 1.14.32
jmelahman/work #16
build(deps): bump github.com/mattn/go-sqlite3 from 1.14.31 to 1.14.32
askasoft/pango #196
chore(deps): Bump github.com/mattn/go-sqlite3 from 1.14.16 to 1.14.32
petri-labs/mokita #182
Bump github.com/mattn/go-sqlite3 from 1.14.16 to 1.14.32
zeroc0d3lab/grafana #176
deps(deps): bump the go-dependencies group with 2 updates
Bump github.com/mattn/go-sqlite3 from 1.14.28 to 1.14.32
Bump github.com/mattn/go-sqlite3 from 1.14.16 to 1.14.32
petri-labs/ibc-hooks #194
build(deps): bump github.com/mattn/go-sqlite3 from 1.14.31 to 1.14.32
chore(deps): bump github.com/mattn/go-sqlite3 from 1.14.28 to 1.14.32
go-testfixtures/testfixtures #319
Bump the go group across 1 directory with 74 updates
soitun/teleport #541
Bump the go group across 1 directory with 74 updates
Tiamat-Tech/teleport #732
Bump the go group across 1 directory with 74 updates
Bump the go group across 1 directory with 75 updates
soitun/teleport #536
chore(deps): bump github.com/mattn/go-sqlite3 from 1.14.29 to 1.14.32 in /backend
feat(deps): bump github.com/mattn/go-sqlite3 from 1.14.31 to 1.14.32
Bump github.com/mattn/go-sqlite3 from 1.14.22 to 1.14.32
wikimedia/mediawiki-services-wikispeech-pronlex #58
build(deps): Bump github.com/mattn/go-sqlite3 from 1.14.22 to 1.14.32 in /store
rootulp/cosmos-sdk #1482
build(deps): Bump github.com/mattn/go-sqlite3 from 1.14.22 to 1.14.32 in /store
coderasha/SEDA-Blockchain-Cosmos-SDK #1313
build(deps): bump github.com/mattn/go-sqlite3 from 1.14.16 to 1.14.32
shanbay/gobay #667
Bump github.com/mattn/go-sqlite3 from 1.14.30 to 1.14.32
project-kessel/inventory-api #807
Bump github.com/mattn/go-sqlite3 from 1.14.30 to 1.14.31
adoublef/go #45
build(deps): bump github.com/mattn/go-sqlite3 from 1.14.29 to 1.14.31
Icinga/icingadb #1004
Bump github.com/mattn/go-sqlite3 from 1.14.28 to 1.14.31
stts-se/pronlex #155
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 |