schema-explorer
schema-explorer copied to clipboard
SQLite missing in mac version
It's noted in sqlite/sqlite.go that
// +build !darwin
// This package depends on go-sqlite3 which wraps the C library which I can't
// get to build for mac so it is excluded with the above build tag.
So it looks as if it is intentional to not build with sqlite support on Mac at the moment. But that's just my guess
It's because I'm on linux and I couldn't get the cross compile of tthe C sqlite driver to work. If you are on mac you can delete that condition and compile it. One of our users already succeeded with that approach.