https://github.com/mattn/go-sqlite3
go sqlite sqlite3-driver
Last synced: about 23 hours ago
Repository metadata:
sqlite3 driver for go using database/sql
- Host: GitHub
- URL: https://github.com/mattn/go-sqlite3
- Owner: mattn
- License: mit
- Created: 2011-11-11T12:36:50.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2024-10-04T14:59:29.000Z (about 1 month ago)
- Last Synced: 2024-10-29T17:55:53.608Z (14 days ago)
- Topics: go, sqlite, sqlite3-driver
- Language: C
- Homepage: http://mattn.github.io/go-sqlite3
- Size: 54.6 MB
- Stars: 7,990
- Watchers: 148
- Forks: 1,111
- Open Issues: 172
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
-
Funding.yml:
- Github: mattn
-
Funding Links:
- https://github.com/sponsors/mattn
- https://opencollective.com/mattn-go-sqlite3
- https://opencollective.com/mattn-go-sqlite3/contribute
- https://opencollective.com/mattn-go-sqlite3/organization/0/website
- https://opencollective.com/mattn-go-sqlite3/organization/1/website
- https://opencollective.com/mattn-go-sqlite3/organization/2/website
- https://opencollective.com/mattn-go-sqlite3/organization/3/website
- https://opencollective.com/mattn-go-sqlite3/organization/4/website
- https://opencollective.com/mattn-go-sqlite3/organization/5/website
- https://opencollective.com/mattn-go-sqlite3/organization/6/website
- https://opencollective.com/mattn-go-sqlite3/organization/7/website
- https://opencollective.com/mattn-go-sqlite3/organization/8/website
- https://opencollective.com/mattn-go-sqlite3/organization/9/website
Owner metadata:
- Name: mattn
- Login: mattn
- Email:
- Kind: user
- Description: Long-time Golang user&contributor, Google Dev Expert for Go, and author of many Go tools, Vim plugin author. Windows hacker C#/Java/C/C++, ex-GitHubStars
- Website: https://mattn.kaoriya.net/
- Location: Osaka, Japan
- Twitter: mattn_jp
- Company:
- Icon url: https://avatars.githubusercontent.com/u/10111?u=4fb5caa72429300200740387758d9905611ab377&v=4
- Repositories: 1977
- Last Synced at: 2024-05-20T14:56:31.184Z
- Profile URL: https://github.com/mattn
- Sponsor URL:
Committers metadata
Last synced: 1 day ago
Total Commits: 758
Total Committers: 194
Avg Commits per committer: 3.907
Development Distribution Score (DDS): 0.559
Commits in past year: 15
Committers in past year: 5
Avg Commits per committer in past year: 3.0
Development Distribution Score (DDS) in past year: 0.333
Name | Commits | |
---|---|---|
Yasuhiro Matsumoto | m****p@g****m | 334 |
Gert-Jan Timmer | g****r@g****m | 95 |
Jesse Rittner | r****e@g****m | 10 |
Lars Buitinck | l****k@e****l | 8 |
Zbigniew Mandziejewicz | s****e@g****m | 8 |
Philip O'Toole | p****e@y****m | 8 |
Mario Trangoni | m****i@g****m | 7 |
Carlos Castillo | c****9@g****m | 6 |
David Anderson | d****e@n****t | 6 |
Evan Jones | e****s@d****m | 6 |
Frederick Akalin | a****n@g****m | 6 |
jander | j****y@1****m | 5 |
Micah Stetson | m****h@s****g | 5 |
A.N | g****o@g****m | 4 |
Andrii Zavorotnii | a****i@g****m | 4 |
John Gallagher | j****r@g****m | 4 |
cds | c****s@s****3 | 4 |
lye | l****e | 4 |
Yoann Cerda | t****n@g****m | 3 |
Tetsuya Morimoto | t****o@g****m | 3 |
Sven Engelhardt | s****n@i****e | 3 |
Scott Lawrence | b****x@g****m | 3 |
Ross Light | l****t@g****m | 3 |
Mura Li | m****i@e****m | 3 |
Martin Tournoij | m****n@a****t | 3 |
Kenneth Shaw | k****w@g****m | 3 |
Joshua Hull | j****y@g****m | 3 |
Greg Holt | g****t@g****m | 3 |
Egon Elbre | e****e@g****m | 3 |
Conor Branagan | c****n@g****m | 3 |
and 164 more... |
Issue and Pull Request metadata
Last synced: 2 days ago
Package metadata
- Total packages: 7
- Total downloads: unknown
- Total docker downloads: 7,484,645,633
- Total dependent packages: 14,553 (may contain duplicates)
- Total dependent repositories: 63,599 (may contain duplicates)
- Total versions: 240
go: github.com/mattn/go-sqlite3
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.
- Homepage: https://github.com/mattn/go-sqlite3
- Documentation: https://pkg.go.dev/github.com/mattn/go-sqlite3#section-documentation
- Licenses: MIT
- Latest release: v2.0.3+incompatible (published almost 5 years ago)
- Last Synced: 2024-11-11T01:13:45.007Z (2 days ago)
- Versions: 43
- Dependent Packages: 14,553
- Dependent Repositories: 63,599
- Docker Downloads: 7,484,645,633
-
Rankings:
- Dependent packages count: 0.012%
- Dependent repos count: 0.02%
- Docker downloads count: 0.04%
- Average: 0.346%
- Stargazers count: 0.815%
- Forks count: 0.846%
go: github.com/mattn/go-sqLite3
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. database/sql doesn't provide a way to get native go-sqlite3 interfaces. So if you want, you need to set ConnectHook and get the SQLiteConn. If you want to register Go functions as SQLite extension functions, call RegisterFunction from ConnectHook. See the documentation of RegisterFunc for more details.
- Homepage: https://github.com/mattn/go-sqLite3
- Documentation: https://pkg.go.dev/github.com/mattn/go-sqLite3#section-documentation
- Licenses: MIT
- Latest release: v1.14.22 (published 9 months ago)
- Last Synced: 2024-11-11T01:13:30.766Z (2 days ago)
- Versions: 39
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Stargazers count: 0.543%
- Forks count: 0.591%
- Average: 4.37%
- Dependent packages count: 6.999%
- Dependent repos count: 9.346%
go: github.com/mattn/go-SQLite3
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. database/sql doesn't provide a way to get native go-sqlite3 interfaces. So if you want, you need to set ConnectHook and get the SQLiteConn. If you want to register Go functions as SQLite extension functions, call RegisterFunction from ConnectHook. See the documentation of RegisterFunc for more details.
- Homepage: https://github.com/mattn/go-SQLite3
- Documentation: https://pkg.go.dev/github.com/mattn/go-SQLite3#section-documentation
- Licenses: MIT
- Latest release: v2.0.3+incompatible (published almost 5 years ago)
- Last Synced: 2024-11-11T01:13:40.420Z (2 days ago)
- Versions: 40
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Stargazers count: 0.543%
- Forks count: 0.591%
- Average: 4.37%
- Dependent packages count: 6.999%
- Dependent repos count: 9.346%
go: github.com/mattn/go-Sqlite3
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. database/sql doesn't provide a way to get native go-sqlite3 interfaces. So if you want, you need to set ConnectHook and get the SQLiteConn. If you want to register Go functions as SQLite extension functions, call RegisterFunction from ConnectHook. See the documentation of RegisterFunc for more details.
- Homepage: https://github.com/mattn/go-Sqlite3
- Documentation: https://pkg.go.dev/github.com/mattn/go-Sqlite3#section-documentation
- Licenses: MIT
- Latest release: v1.14.22 (published 9 months ago)
- Last Synced: 2024-11-11T01:13:47.258Z (2 days ago)
- Versions: 39
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Stargazers count: 0.543%
- Forks count: 0.591%
- Average: 4.37%
- Dependent packages count: 6.999%
- Dependent repos count: 9.346%
go: github.com/Mattn/go-sqlite3
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. database/sql doesn't provide a way to get native go-sqlite3 interfaces. So if you want, you need to set ConnectHook and get the SQLiteConn. If you want to register Go functions as SQLite extension functions, call RegisterFunction from ConnectHook. See the documentation of RegisterFunc for more details.
- Homepage: https://github.com/Mattn/go-sqlite3
- Documentation: https://pkg.go.dev/github.com/Mattn/go-sqlite3#section-documentation
- Licenses: MIT
- Latest release: v1.14.19 (published 11 months ago)
- Last Synced: 2024-11-11T01:13:43.094Z (2 days ago)
- Versions: 39
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Stargazers count: 0.715%
- Forks count: 0.76%
- Average: 4.455%
- Dependent packages count: 6.999%
- Dependent repos count: 9.346%
go: github.com/mattn/go-sqlite3/upgrade
Package upgrade is a dummy package to ensure package can be loaded This file is to avoid the following error: can't load package: package go-sqlite3/upgrade: build constraints exclude all Go files in go-sqlite3\upgrade
- Homepage: https://github.com/mattn/go-sqlite3
- Documentation: https://pkg.go.dev/github.com/mattn/go-sqlite3/upgrade#section-documentation
- Licenses: MIT
- Latest release: (published 6 months ago)
- Last Synced: 2024-11-08T00:23:16.280Z (5 days ago)
- Versions: 0
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 6.999%
- Average: 8.173%
- Dependent repos count: 9.346%
go: github.com/mattn/Go-sqlite3
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. database/sql doesn't provide a way to get native go-sqlite3 interfaces. So if you want, you need to set ConnectHook and get the SQLiteConn. If you want to register Go functions as SQLite extension functions, call RegisterFunction from ConnectHook. See the documentation of RegisterFunc for more details.
- Homepage: https://github.com/mattn/Go-sqlite3
- Documentation: https://pkg.go.dev/github.com/mattn/Go-sqlite3#section-documentation
- Licenses: MIT
- Latest release: v2.0.3+incompatible (published almost 5 years ago)
- Last Synced: 2024-11-11T01:13:37.599Z (2 days ago)
- Versions: 40
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 6.999%
- Average: 8.173%
- Dependent repos count: 9.346%