Thread overview
SQLite-D goes beta!
May 30, 2016
Stefan Koch
Sep 20, 2016
Stefan Koch
Sep 20, 2016
Eugene Wissner
Sep 20, 2016
Karabuta
Sep 20, 2016
Stefan Koch
Sep 21, 2016
yawniek
Nov 17, 2016
Stefan Koch
May 30, 2016
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
September 20, 2016
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.
September 20, 2016
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!
September 20, 2016
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 :)
September 20, 2016
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
September 21, 2016
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!
November 17, 2016
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.