https://github.com/dal-go/dalgo2sql
SQL adapter for DALgo - a DB abstraction layer in Go
https://github.com/dal-go/dalgo2sql
dalgo dalgo-adapter go golang sql
Last synced: 13 days ago
JSON representation
SQL adapter for DALgo - a DB abstraction layer in Go
- Host: GitHub
- URL: https://github.com/dal-go/dalgo2sql
- Owner: dal-go
- License: mit
- Created: 2021-10-02T13:57:12.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-06-08T03:16:35.000Z (20 days ago)
- Last Synced: 2025-06-08T04:34:05.102Z (20 days ago)
- Topics: dalgo, dalgo-adapter, go, golang, sql
- Language: Go
- Homepage: https://github.com/strongo/dalgo
- Size: 160 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dalgo2sql
SQL adapter for [DALgo](https://github.com/dal-go/dalgo) - a Database Abstraction Layer in Go.
## Status
[](https://github.com/dal-go/dalgo2sql/actions/workflows/ci.yml)
[](https://goreportcard.com/report/github.com/dal-go/dalgo2sql)
[](https://godoc.org/github.com/dal-go/dalgo2sql)## Usage
go get github.com/dal-go/dalgo2sql
## End2end - is a separate module
For end-to-end testing a SQLite driver is used.
To avoid bringing a dependency to SQLite into the consumers of dalgo2sql,
the [end2end](end2end) tests are in a separate module.This is an unusual approach, as usually you would want to bring dependency to underlying driver with a dalgo adapter.
But this is not a case for this adapter as `database/sql` that is referenced by `dalgo2sql` is an abstraction layer
and consumer is free to choose the underlying driver.## License
Free to use and open source under [MIT License](LICENSE).