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
build(deps): Bump the security group across 1 directory with 15 updates
go(deps): bump the go-dependencies group across 1 directory with 14 updates
lycp152/UniversityEntranceExamSubjectNavi #92
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
Bump github.com/mattn/go-sqlite3 from 1.14.30 to 1.14.32 in /src
nDenerserve/SmartPi #242
chore(deps): bump github.com/mattn/go-sqlite3 from 1.14.17 to 1.14.32
fix(deps): bump the external group across 1 directory with 23 updates
opentdf/platform #2670
Bump github.com/mattn/go-sqlite3 from 1.14.30 to 1.14.32
chore(deps): bump the all group across 1 directory with 19 updates
go-shiori/shiori #1139
Bump the gomod group across 1 directory with 15 updates
robherley/snips.sh #238
build(deps): bump github.com/mattn/go-sqlite3 from 1.14.30 to 1.14.32
mpolden/zdns #20
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 all-deps group across 1 directory with 6 updates
google/trillian-examples #1342
chore(deps): bump the go_modules group across 1 directory with 18 updates
bsv-blockchain/block-headers-service #346
chore(deps): bump the dependencies group with 8 updates
k1LoW/tbls #738
Bump the go group across 1 directory with 99 updates
Bump the go group across 1 directory with 99 updates
sigtrap/teleport #3294
Bump the go group across 1 directory with 99 updates
Tiamat-Tech/teleport #794
Bump the go group across 1 directory with 99 updates
soitun/teleport #604
Bump the go group with 95 updates
gravitational/teleport #58547
build(deps): bump the minor-and-patch group across 1 directory with 8 updates
deps: bump github.com/mattn/go-sqlite3 from 1.14.17 to 1.14.32
build(deps): Bump the security group in /plugins/sqlite with 2 updates
schemahero/schemahero #1221
chore(deps): bump the minor-and-patch group with 31 updates
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
chore(deps): bump github.com/mattn/go-sqlite3 from 1.14.16 to 1.14.32
faza/lfs-test #255
Bump github.com/mattn/go-sqlite3 from 1.14.29 to 1.14.32
netobserv/network-observability-cli #370
[Build-deps]: Bump github.com/mattn/go-sqlite3 from 1.14.28 to 1.14.32
owncloud/reva #368
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
chore(deps): bump github.com/mattn/go-sqlite3 from 1.14.28 to 1.14.32
build(deps): bump the go group with 29 updates
keboola/keboola-as-code #2414
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
chore(deps): bump the go_modules group across 1 directory with 14 updates
bsv-blockchain/block-headers-service #344
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
thrasher-corp/gocryptotrader #2015
build(deps): Bump the security group across 1 directory with 13 updates
build(deps): bump github.com/mattn/go-sqlite3 from 1.14.30 to 1.14.32
deps(go): bump github.com/mattn/go-sqlite3 from 1.14.30 to 1.14.32
chore(deps): bump github.com/mattn/go-sqlite3 from 1.14.17 to 1.14.32
iqlusioninc/osmosis #246
[gomod] Bump github.com/mattn/go-sqlite3 from 1.14.30 to 1.14.32 in /kryptos
skulpturenz/shared-resources #661
go(deps): bump the go-dependencies group across 1 directory with 10 updates
lycp152/UniversityEntranceExamSubjectNavi #91
chore(deps): bump github.com/mattn/go-sqlite3 from 1.14.28 to 1.14.32 in /dbtests
go-testfixtures/testfixtures #326
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 |