Re: [go-nuts] Re: pure-go implementation of sqlite

2020-06-16 Thread 'Dan Kortschak' via golang-nuts
This is at https://modernc.org/sqlite now, along with the rest of Jan's amazing things, https://gitlab.com/cznic. On Tue, 2020-06-16 at 12:27 -0700, Mandolyte wrote: > SQLite3 support is the stated goal of > https://github.com/elliotchance/c2go > > Also, I believe I tested this one a long time

[go-nuts] Re: pure-go implementation of sqlite

2020-06-16 Thread Mandolyte
SQLite3 support is the stated goal of https://github.com/elliotchance/c2go Also, I believe I tested this one a long time ago... but have lost track of it after they moved away from Github: https://github.com/cznic/sqlite On Monday, June 15, 2020 at 12:57:54 PM UTC-4, Douglas Manley wrote: > >

Re: [go-nuts] Re: pure-go implementation of sqlite

2020-06-16 Thread Harmen
> > is there (or is somebody working on) a pure-go implementation of sqlite ? > > or at least a subset of it, to be able to read sqlite files ? > > > > -s > > > > PS: I know about the (by now) canonical implementations > > (mattn/go-sqlite and others) but a completely go-based solution would

[go-nuts] Re: pure-go implementation of sqlite

2020-06-16 Thread a2800276
> > is there (or is somebody working on) a pure-go implementation of sqlite ? > or at least a subset of it, to be able to read sqlite files ? > > -s > > PS: I know about the (by now) canonical implementations > (mattn/go-sqlite and others) but a completely go-based solution would >

[go-nuts] Re: pure-go implementation of sqlite

2020-06-15 Thread Douglas Manley
No, unfortunately this just replaces the need for gcc for SQLite3 with the need for gcc for Sqinn. My goal is to have a SQL database for use in Go that is 100% pure Go with zero outside dependencies. My primary use case is for unit-testing large applications that rely on SQL databases such

[go-nuts] Re: pure-go implementation of sqlite

2020-06-15 Thread cvilsmeier
Maybe Sqinn-Go can help you: https://github.com/cvilsmeier/sqinn-go (I'm the author of it) -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[go-nuts] Re: pure-go implementation of sqlite

2019-10-18 Thread Mandolyte
I have tested this one: https://godoc.org/modernc.org/sqlite -- but not extensively and it states it should not be used for production. (my testing was on the "archived" github version) And this is the goal of https://github.com/elliotchance/c2go -- but can't tell if it is active or whether it

[go-nuts] Re: pure-go implementation of sqlite

2019-10-18 Thread doug . manley
As of right now, all I've been able to find is this (incomplete) read-only implementation: https://github.com/alicebob/sqlittle On Tuesday, July 1, 2014 at 8:27:34 AM UTC-4, Sebastien Binet wrote: > > hi there, > > is there (or is somebody working on) a pure-go implementation of sqlite ? > or