https://github.com/go-rel/sqlite3
  
  
    SQLite3 adapter for REL written in Golang. 
    https://github.com/go-rel/sqlite3
  
database go golang hacktoberfest orm sqlite3
        Last synced: 22 days ago 
        JSON representation
    
SQLite3 adapter for REL written in Golang.
- Host: GitHub
- URL: https://github.com/go-rel/sqlite3
- Owner: go-rel
- License: mit
- Created: 2021-09-24T06:53:30.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-08-27T22:36:50.000Z (2 months ago)
- Last Synced: 2025-09-13T13:25:33.887Z (about 2 months ago)
- Topics: database, go, golang, hacktoberfest, orm, sqlite3
- Language: Go
- Homepage:
- Size: 106 KB
- Stars: 1
- Watchers: 2
- Forks: 5
- Open Issues: 2
- 
            Metadata Files:
            - Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
 
Awesome Lists containing this project
README
          # sqlite3
[](https://pkg.go.dev/github.com/go-rel/sqlite3)
[](https://github.com/go-rel/sqlite3/actions/workflows/test.yml)
[](https://goreportcard.com/report/github.com/go-rel/sqlite3)
[](https://codecov.io/gh/go-rel/sqlite3)
[](https://gitter.im/go-rel/rel)
SQLite3 adapter for REL.
## Example
```go
package main
import (
	"context"
	_ "github.com/mattn/go-sqlite3"
	"github.com/go-rel/sqlite3"
	"github.com/go-rel/rel"
)
func main() {
	// open sqlite3 connection.
	adapter, err := sqlite3.Open("dev.db")
	if err != nil {
		panic(err)
	}
	defer adapter.Close()
	// initialize rel's repo.
	repo := rel.New(adapter)
	repo.Ping(context.TODO())
}
```
## Supported Driver
- github.com/mattn/go-sqlite3