You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be awesome if this package could be independent of go-sqlite3 and instead, use go-sqlite3 (sqlite3) when CGO_ENABLED=1 and use modernc.org/sqlite when not.
Motivation
This allows the user to choose between either go-sqlite3 (sqlite3) or modernc.org/sqlite (sqlite) pure-go implementation. go-sqlite3 is excellent, but CGO is a lot to deal with.
The https://github.com/glebarez/sqlite driver is behind on many commits, it would be much simpler to maintain one codebase for multiple drivers rather than two, especially since they are almost the same.
Describe the feature
It would be awesome if this package could be independent of go-sqlite3 and instead, use
go-sqlite3
(sqlite3
) whenCGO_ENABLED=1
and usemodernc.org/sqlite
when not.Motivation
This allows the user to choose between either
go-sqlite3
(sqlite3
) ormodernc.org/sqlite
(sqlite
) pure-go implementation.go-sqlite3
is excellent, but CGO is a lot to deal with.The https://github.com/glebarez/sqlite driver is behind on many commits, it would be much simpler to maintain one codebase for multiple drivers rather than two, especially since they are almost the same.
Related Issues
#77 #72 #93 #35
The text was updated successfully, but these errors were encountered: