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 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:
> > 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 that no one on the project has to do
> > anything other than install Go to build and test them.
> > 
> > On Monday, June 15, 2020 at 12:31:07 PM UTC-4 cvilsmeier wrote:
> > > 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 golang-nuts+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/golang-nuts/2c533170-33b5-4eb5-9f58-25c88f34710fo%40googlegroups.com
> .
> 


-- 
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 golang-nuts+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/golang-nuts/8feafd170a2269c12535927bc09f52fb51af66d5.camel%40kortschak.io.


[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:
>
> 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 that 
> no one on the project has to do anything other than install Go to build and 
> test them.
>
> On Monday, June 15, 2020 at 12:31:07 PM UTC-4 cvilsmeier wrote:
>
>> 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 golang-nuts+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/golang-nuts/2c533170-33b5-4eb5-9f58-25c88f34710fo%40googlegroups.com.


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 
> > facilitate deployment and development across devs machines... 

If you only need to read, and not write, sqlite files, have a look at
https://github.com/alicebob/sqlittle

-- 
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 golang-nuts+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/golang-nuts/20200616103957.GA6629%40arp.lijzij.de.


[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 
> facilitate deployment and development across devs machines... 
>

sqlite is a bit of a special case, because the C implementation IS sqlite, 
they have a very stable development and testing setup and my trust in 
sqlite is basically trust in the developers of the C code. 
I don't see the advantage of having a Go implementation, expect for the 
sake of Go purity...
Can you elaborate a little bit on the motivation? I've been using go-sqlite 
on both amd64 and arm64 with absolutely no problem.

 

-- 
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 golang-nuts+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/golang-nuts/4a05f73f-8915-419d-b9cd-459d41e2e485o%40googlegroups.com.


[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 that 
no one on the project has to do anything other than install Go to build and 
test them.

On Monday, June 15, 2020 at 12:31:07 PM UTC-4 cvilsmeier wrote:

> 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 golang-nuts+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/golang-nuts/13f3a822-a59e-41fc-9cbe-63d4fb3d8cedn%40googlegroups.com.


[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 golang-nuts+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/golang-nuts/625dfbbd-81d9-48ac-8ab4-2740dea7af32o%40googlegroups.com.


[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 actually has gotten to sqlite at all.

On Friday, October 18, 2019 at 11:08:20 AM UTC-4, 
doug@extreme-scale.com wrote:
>
> 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 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 
>> facilitate deployment and development across devs machines... 
>>
>

-- 
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 golang-nuts+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/golang-nuts/90bac31a-1af8-4293-9102-9e8ac2de39ae%40googlegroups.com.


[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 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 
> facilitate deployment and development across devs machines... 
>

-- 
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 golang-nuts+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/golang-nuts/c2fc5af2-9c42-46cd-9f13-ee69cd80cbab%40googlegroups.com.