mirror of
https://github.com/glebarez/go-sqlite.git
synced 2025-10-15 04:10:46 +08:00
56 lines
1.9 KiB
Markdown
56 lines
1.9 KiB
Markdown
[](https://github.com/glebarez/go-sqlite/actions/workflows/tests.yml)
|
|

|
|
|
|
# go-sqlite
|
|
This is a pure-Go SQLite driver for Golang's native [database/sql](https://pkg.go.dev/database/sql) package.
|
|
The driver has [Go-based implementation of SQLite](https://gitlab.com/cznic/sqlite) embedded in itself (so, you don't need to install SQLite separately)
|
|
|
|
Version support:
|
|
|
|
| Version | SQLite | Go 1.16 support | Go 1.17+ support |
|
|
| ------- | ------ | :----------------: | :----------------: |
|
|
| v1.14.8 | 3.38.0 | :white_check_mark: | :white_check_mark: |
|
|
| v1.15.0 | 3.38.1 | :x: | :white_check_mark: |
|
|
| v1.15.1 | 3.38.1 | :white_check_mark: | :white_check_mark: |
|
|
| v1.15.2 | 3.38.2 | :white_check_mark: | :white_check_mark: |
|
|
|
|
|
|
# Usage
|
|
|
|
## Example
|
|
|
|
```go
|
|
package main
|
|
|
|
import (
|
|
"database/sql"
|
|
"log"
|
|
|
|
_ "github.com/glebarez/go-sqlite"
|
|
)
|
|
|
|
func main() {
|
|
// connect
|
|
db, err := sql.Open("sqlite", ":memory:")
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
// get SQLite version
|
|
_ := db.QueryRow("select sqlite_version()")
|
|
}
|
|
```
|
|
|
|
## Connection string examples
|
|
- in-memory SQLite: ```":memory:"```
|
|
- on-disk SQLite: ```"path/to/some.db"```
|
|
- Foreign-key constraint activation: ```":memory:?_pragma=foreign_keys(1)"```
|
|
|
|
## Settings PRAGMAs in connection string
|
|
Any SQLIte pragma can be preset for a Database connection using ```_pragma``` query parameter. Examples:
|
|
- [journal mode](https://www.sqlite.org/pragma.html#pragma_journal_mode): ```path/to/some.db?_pragma=journal_mode(WAL)```
|
|
- [busy timeout](https://www.sqlite.org/pragma.html#pragma_busy_timeout): ```:memory:?_pragma=busy_timeout(5000)```
|
|
|
|
Multiple PRAGMAs can be specified, e.g.:<br>
|
|
```path/to/some.db?_pragma=busy_timeout(5000)&_pragma=journal_mode(WAL)```
|