A pure Go embedded SQL database
gitlab.com
A pure Go embedded SQL database
1–10 of 51 posts
Re: A pure Go embedded SQL database
#2Re: A pure Go embedded SQL database
#3Re: A pure Go embedded SQL database
#4This project seems rather in need of a summary of what it is and what it does. How does it compare to for ex Sqlite?
Re: A pure Go embedded SQL database
#5This project seems rather in need of a summary of what it is and what it does. How does it compare to for ex Sqlite?
Well for one, if it's in Go, it wouldn't need Cgo.
Re: A pure Go embedded SQL database
#6This project seems rather in need of a summary of what it is and what it does. How does it compare to for ex Sqlite?
Well for one, if it's in Go, it wouldn't need Cgo.
https://github.com/crawshaw/sqlite https://github.com/zombiezen/go-sqlite
Re: A pure Go embedded SQL database
#7Earlier quoted context omitted.
Well for one, if it's in Go, it wouldn't need Cgo.
It's pretty easy to statically link SQLite[0]. Are there other disadvantages to CGO? [0]: https://www.arp242.net/static-go.html
Re: A pure Go embedded SQL database
#8Re: A pure Go embedded SQL database
#9This project seems rather in need of a summary of what it is and what it does. How does it compare to for ex Sqlite?
Well for one, if it's in Go, it wouldn't need Cgo.
Re: A pure Go embedded SQL database
#10Earlier quoted context omitted.
Well for one, if it's in Go, it wouldn't need Cgo.
There are a few go libs now that offer SQLite without cgo. https://github.com/crawshaw/sqlite https://github.com/zombiezen/go-sqlite
zombiezen/go-sqlite uses cznic's pure Go converted version of SQLite, so avoids CGo. It's explicitly stated to be "a fork of crawshaw.io/sqlite that uses modernc.org/sqlite, a CGo-free SQLite package. It aims to be a mostly drop-in replacement for crawshaw.io/sqlite."