Seems like there are some trademark issues with just calling this SQLite.
A CGo-free port of SQLite/SQLite3
31–39 of 39 posts
Re: A CGo-free port of SQLite/SQLite3
#32The readme really lacks the answer to the "why" question. What's the use case, why should I prefer it over real sqlite?
Re: A CGo-free port of SQLite/SQLite3
#33Seems like there are some trademark issues with just calling this SQLite.
It's cznic/sqlite in Go-land; this is just a quirk of HN titling.
2023: Go port of SQLite without CGo (255 points, 118 comments) https://news.ycombinator.com/item?id=35488980
2020: Cznic/sqlite: Sqlite in pure Golang (no CGO) (6 points, not interesting for discussion.. this project is old) https://news.ycombinator.com/item?id=24358826
(7 other similar submissions)
Re: A CGo-free port of SQLite/SQLite3
#34Earlier quoted context omitted.
It's cznic/sqlite in Go-land; this is just a quirk of HN titling.
A quirk of this submitter's choice? We've seen it several times before without the trademark violation: 2023: Go port of SQLite without CGo (255 points, 118 comments) https://news.ycombinator.com/item?id=35488980 2020: Cznic/sqlite: Sqlite in pure Golang (no CGO) (6 points, not interesting for discussion.. this project is old) https://news.ycombinator.com/item?id=24358826 (7 other similar submissions)
Re: A CGo-free port of SQLite/SQLite3
#35The readme really lacks the answer to the "why" question. What's the use case, why should I prefer it over real sqlite?
Re: A CGo-free port of SQLite/SQLite3
#36[flagged]
Re: A CGo-free port of SQLite/SQLite3
#37The readme really lacks the answer to the "why" question. What's the use case, why should I prefer it over real sqlite?
The biggest reason you'd want a cgo-free sqlite is if you're cross-compiling; for instance, from your macOS dev laptop to an x64 dev server.
Re: A CGo-free port of SQLite/SQLite3
#38So is this a handmade port vs the translated port done by modernc?