Thread overview
SQLite 3.5.16 bindings for D
Jun 23, 2009
Jaap Geurts
Jun 27, 2009
enter
Jun 27, 2009
dickl
Jun 27, 2009
Ary Borenszweig
Jun 29, 2009
negerns
June 23, 2009
I have just completed bindings for D for the latest SQLite 3.5.16. You can download it here: http://www.proficiosoftware.com/ or directlry here
http://www.proficiosoftware.com/sqlitebindings
June 27, 2009
Jaap Geurts Wrote:

> I have just completed bindings for D for the latest SQLite 3.5.16. You can download it here: http://www.proficiosoftware.com/ or directlry here
> http://www.proficiosoftware.com/sqlitebindings

Wonderful! But it use Tango? Can I use it with Phobos?
June 27, 2009
enter wrote:
> Jaap Geurts Wrote:
> 
>> I have just completed bindings for D for the latest SQLite 3.5.16. You can download it here: http://www.proficiosoftware.com/ or directlry here
>> http://www.proficiosoftware.com/sqlitebindings
> 
> Wonderful! But it use Tango? Can I use it with Phobos?
Just replace:
private import tango.core.Vararg; // For va_list.

with:
private import std.stdarg;
June 27, 2009
dickl escribió:
> enter wrote:
>> Jaap Geurts Wrote:
>>
>>> I have just completed bindings for D for the latest SQLite 3.5.16. You can download it here: http://www.proficiosoftware.com/ or directlry here
>>> http://www.proficiosoftware.com/sqlitebindings
>>
>> Wonderful! But it use Tango? Can I use it with Phobos?
> Just replace:
> private import tango.core.Vararg; // For va_list.
> 
> with:
> private import std.stdarg;

Can't those be in druntime?
June 29, 2009
Ary Borenszweig wrote:
> dickl escribió:
>> enter wrote:
>>> Jaap Geurts Wrote:
>>>
>>>> I have just completed bindings for D for the latest SQLite 3.5.16. You can download it here: http://www.proficiosoftware.com/ or directlry here
>>>> http://www.proficiosoftware.com/sqlitebindings
>>>
>>> Wonderful! But it use Tango? Can I use it with Phobos?
>> Just replace:
>> private import tango.core.Vararg; // For va_list.
>>
>> with:
>> private import std.stdarg;
> 
> Can't those be in druntime?

Could this be included in the DDBI project? I believe that SQLite was started in DDBI back then.

negerns