sqinn VS go-sqlite3

Compare sqinn vs go-sqlite3 and see what are their differences.

sqinn

SQLite over stdin/stdout (by cvilsmeier)

go-sqlite3

Go bindings to SQLite using wazero (by ncruces)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
sqinn go-sqlite3
4 23
74 271
- -
7.0 9.5
about 1 month ago 6 days ago
C Go
The Unlicense MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

sqinn

Posts with mentions or reviews of sqinn. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-14.
  • Show HN: My Go SQLite driver did poorly on a benchmark, so I fixed it
    11 projects | news.ycombinator.com | 14 Dec 2023
    First part of the README that hasn't changed in 2 months:

    > Sqinn-Go is a Go (Golang) library for accessing SQLite databases without cgo. It uses Sqinn https://github.com/cvilsmeier/sqinn under the hood. It starts Sqinn as a child process (os/exec) and communicates with Sqinn over stdin/stdout/stderr. The Sqinn child process then does the SQLite work.

    > If you want SQLite but do not want cgo, Sqinn-Go can be a solution.

    This seems pretty clear to me about what's happening. It makes an OS call to a third-party executable (sqinn), pipes the result from stdout back into the Go code. The advantage is you don't have to compile the C code alongside your Go code.

    Honestly, I don't really know how much more clear the author could be. I guess if you don't know what stdin, stdout, and stderr are it might be confusing? It's hard to imagine that a programmer who is interested in this library isn't familiar with those concepts though.

  • Show HN: Sqinn-Go is a Golang library for accessing SQLite databases in pure Go
    14 projects | news.ycombinator.com | 4 Oct 2023
  • SQLite in Go, with and Without Cgo
    16 projects | news.ycombinator.com | 13 May 2022
    I've not used it, but sqinn is one sqlite server meant specifically to be used by languages without c calling conventions:

    https://github.com/cvilsmeier/sqinn

  • SQLite in Go, with and without cgo
    10 projects | /r/golang | 12 May 2022
    The latest supported version is 3.38.3: https://github.com/cvilsmeier/sqinn/releases/tag/v1.1.15

go-sqlite3

Posts with mentions or reviews of go-sqlite3. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-30.
  • Show HN: Roast my SQLite encryption at-rest
    9 projects | news.ycombinator.com | 30 Apr 2024
    Yep, I just made it tweakable at build, which was always the intent, although I expect the default to be popular.

    https://github.com/ncruces/go-sqlite3/blob/67d859a5/vfs/adia...

    That's unfortunate about the default parameters, but note that you can also replace the KDF altogether (besides just not using it).

    You just need to implement this interface, with any HBSH construction and KDF:

    https://github.com/ncruces/go-sqlite3/blob/67d859a5/vfs/adia...

    If you keep the HBSH and change the KDF, your file format will be “compatible.”

  • Jsonfile: A Quick Hack for Tinkering
    2 projects | news.ycombinator.com | 7 Feb 2024
    struggling figuring out how to make my cgo sqlite cross-compile to Windows

    Plenty of people trying to fix that.

    There's at least:

    https://modernc.org/sqlite

    Then there's https://github.com/zombiezen/go-sqlite that actually builds https://crawshaw.io/sqlite on top of modernc.

    And there's mine that has both a low level and a database/sql driver builds and runs everywhere Go does: https://github.com/ncruces/go-sqlite3

  • SQLite-memory-vfs: Open a SQLite db from memory in Python, without hitting disk
    4 projects | news.ycombinator.com | 27 Dec 2023
    If you're interested both SQLite's and my memdb VFSes implement safe locking.

    Depending on your familiarity with Go, mine maybe easier to follow, or not.

    https://github.com/ncruces/go-sqlite3/blob/f1b00a9944730eaa9...

  • Show HN: My Go SQLite driver did poorly on a benchmark, so I fixed it
    11 projects | news.ycombinator.com | 14 Dec 2023
    One thing I tried to make sure, to avoid the pitfall modernc is having, is to make sure building "the WASM BLOB" is easily reproducible with widely available tools:

    https://github.com/ncruces/go-sqlite3/blob/main/.github/work...

    I do apply some light patches to SQLite, but so far they've always cleanly applied, and I can produce a new release within hours of being notified of SQLite releases.

  • JSONB Has Landed in SQLite
    1 project | news.ycombinator.com | 6 Dec 2023
  • Show HN: Go bindings to SQLite using wazero
    1 project | news.ycombinator.com | 23 Nov 2023
  • Show HN: Gogosseract, a Go Lib for CGo-Free Tesseract OCR via Wazero
    5 projects | news.ycombinator.com | 4 Nov 2023
    Disclosure: I'm working on alternative Cgo-less bindings for SQLite, using wazero.

    https://github.com/ncruces/go-sqlite3

    One of the problems of the modernc approach (IMO) is that they're not just transpiring CPU/compute stuff, but entirely OS/platform stuff.

    Each Go file of theirs is a xxx_os_arch.go that starts with 100s of OS-#defines-as-consts, and goes on to transpile fully #ifdefed code.

    It also implements antithetical (in Go) stuff like goroutine local storage, because libc pthreads can't live without it.

    And all IO is via direct syscalls that will never play nice with the Go scheduler, because, again this is OS level stuff.

    WASM defines a cross platform CPU and an ABI, and using that for compute and the bottom OS layer in Go you get (IMO) a nicer end result.

    Given the hard task of generating decent code from WASM at load time (wazero's compiler is pretty naive, a better one is being developed, but it will take seconds to generate good code for anything non trivial like SQLite) I wouldn't mind having a solution that translated to Go, or Go ASM, at build time.

  • Show HN: Sqinn-Go is a Golang library for accessing SQLite databases in pure Go
    14 projects | news.ycombinator.com | 4 Oct 2023
  • Go bindings to SQLite using Wazero
    3 projects | /r/golang | 2 Jun 2023
    The github.com/ncruces/go-sqlite3 is a link.
  • C to WASM to Go
    1 project | /r/golang | 20 May 2023
    Using the stack pointer global is an interesting hack. I'd never thought of that. Need to compare with what I'm doing for SQLite (a kind of per connection arena).

What are some alternatives?

When comparing sqinn and go-sqlite3 you can also consider the following projects:

tcl

xcgo - Golang cross-platform builder docker image with CGo and other tooling

drydock - Experiment in unit testing with PostgreSQL using Docker

zenity - Zenity dialogs for Golang, Windows, macOS

sqlite

go-sqlite3 - sqlite3 driver for go using database/sql

Sqinn-Go - Golang SQLite without cgo

go-sqlite - pure-Go SQLite driver for Go (SQLite embedded)

homebrew-musl-cross - Homebrew Formula for static-friendly musl-based GCC macOS-to-Linux cross-compilers

acmd - Simple, useful and opinionated CLI package in Go.

venomoid - Defanging viper