www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.announce - SQLite-D goes beta!

reply Stefan Koch <uplink.coder googlemail.com> writes:
It is my pleasure to announce that I now consider SQLite-D to be 
in Beta stage.
The reader is now stable enough to read all the test tables I 
have been given.

The fact that it took around 20 minutes to complete index-tree 
support convinced mt that I have chosen a solid design.

I have received the request to add examples and documentation to 
sqlite-d.
And I will do so as time permits.

This project will be boost licensed.

So don't be shy :)

https://github.com/UplinkCoder/sqlite-d
May 30 2016
next sibling parent reply Stefan Koch <uplink.coder googlemail.com> writes:
On Monday, 30 May 2016 at 18:07:09 UTC, Stefan Koch wrote:
 It is my pleasure to announce that I now consider SQLite-D to 
 be in Beta stage.
 The reader is now stable enough to read all the test tables I 
 have been given.

 The fact that it took around 20 minutes to complete index-tree 
 support convinced mt that I have chosen a solid design.

 I have received the request to add examples and documentation 
 to sqlite-d.
 And I will do so as time permits.

 This project will be boost licensed.

 So don't be shy :)

 https://github.com/UplinkCoder/sqlite-d
It took a few months for me to get to the point, but now it is officially boost licensed.
Sep 20 2016
parent Eugene Wissner <belka caraus.de> writes:
On Tuesday, 20 September 2016 at 16:53:23 UTC, Stefan Koch wrote:
 On Monday, 30 May 2016 at 18:07:09 UTC, Stefan Koch wrote:
 It is my pleasure to announce that I now consider SQLite-D to 
 be in Beta stage.
 The reader is now stable enough to read all the test tables I 
 have been given.

 The fact that it took around 20 minutes to complete index-tree 
 support convinced mt that I have chosen a solid design.

 I have received the request to add examples and documentation 
 to sqlite-d.
 And I will do so as time permits.

 This project will be boost licensed.

 So don't be shy :)

 https://github.com/UplinkCoder/sqlite-d
It took a few months for me to get to the point, but now it is officially boost licensed.
I want just let you know that native sqlite is absolute great. I maintain a packagekit backend for slackware linux and it takes advantage of sqlite. It is currently written in C with glib but i want to add some D later. So many thanks for your work!
Sep 20 2016
prev sibling next sibling parent reply Karabuta <karabutaworld gmail.com> writes:
On Monday, 30 May 2016 at 18:07:09 UTC, Stefan Koch wrote:
 It is my pleasure to announce that I now consider SQLite-D to 
 be in Beta stage.
 The reader is now stable enough to read all the test tables I 
 have been given.

 The fact that it took around 20 minutes to complete index-tree 
 support convinced mt that I have chosen a solid design.

 I have received the request to add examples and documentation 
 to sqlite-d.
 And I will do so as time permits.

 This project will be boost licensed.

 So don't be shy :)

 https://github.com/UplinkCoder/sqlite-d
Great work! Can't wait to see sample code :)
Sep 20 2016
parent reply Stefan Koch <uplink.coder googlemail.com> writes:
On Tuesday, 20 September 2016 at 20:34:19 UTC, Karabuta wrote:
 Great work! Can't wait to see sample code :)
It's in app.d also see test.d
Sep 20 2016
parent yawniek <yawniek srtnwz.com> writes:
On Tuesday, 20 September 2016 at 20:37:33 UTC, Stefan Koch wrote:
 On Tuesday, 20 September 2016 at 20:34:19 UTC, Karabuta wrote:
 Great work! Can't wait to see sample code :)
It's in app.d also see test.d
very elegant! congrats!
Sep 21 2016
prev sibling parent Stefan Koch <uplink.coder googlemail.com> writes:
I just updated ~master with a little tool that will print a 
dot-file with describing the internal Tree-structure of database.

All you need to do is to import layout2dot.
And call TreeLayoutToDot on your database.
it will give you back a string which you can then give to 
graph-viz.
If dot produces anything but a small-height big-width picture you 
should really vacuum your database.
Nov 17 2016