Re: SQLite Bindings

2011-03-15 Thread Jacob Carlborg
On 2011-03-15 10:30, Jonas Drewsen wrote: On 15/03/11 01.33, nedbrek wrote: Hello all, "Jesse Phillips" wrote in message news:ilk728$gk0$1...@digitalmars.com... libcurl, SQLite, libpng, libbzip2, and the WindowsAPI stuff all sound like Excellent items to include for standard distribution. It i

Re: SQLite Bindings

2011-03-15 Thread Jonas Drewsen
On 15/03/11 01.33, nedbrek wrote: Hello all, "Jesse Phillips" wrote in message news:ilk728$gk0$1...@digitalmars.com... libcurl, SQLite, libpng, libbzip2, and the WindowsAPI stuff all sound like Excellent items to include for standard distribution. It is really nice to just have these items ava

Re: SQLite Bindings

2011-03-14 Thread nedbrek
Hello all, "Jesse Phillips" wrote in message news:ilk728$gk0$1...@digitalmars.com... > libcurl, SQLite, libpng, libbzip2, and the WindowsAPI stuff all sound like > Excellent items to include for standard distribution. It is really nice to > just > have these items available like zlib and zip. >

Re: SQLite Bindings

2011-03-14 Thread Andrei Alexandrescu
On 3/13/11 11:54 PM, Jesse Phillips wrote: libcurl, SQLite, libpng, libbzip2, and the WindowsAPI stuff all sound like Excellent items to include for standard distribution. It is really nice to just have these items available like zlib and zip. Personally I think Lua would make a nice standard

Re: SQLite Bindings

2011-03-14 Thread Jonathan M Davis
On Monday 14 March 2011 02:24:45 Jonas Drewsen wrote: > On 14/03/11 00.07, Jonathan M Davis wrote: > > On Sunday 13 March 2011 14:56:34 Jonas Drewsen wrote: > >> On 13/03/11 18.29, dsimcha wrote: > >>> One of the features I miss most in Phobos is support for SQLite. > >>> Several people have writte

Re: SQLite Bindings

2011-03-14 Thread Jonas Drewsen
On 14/03/11 04.33, dsimcha wrote: On 3/13/2011 5:56 PM, Jonas Drewsen wrote: It's a great idea. But I think there need to be some kind of janitor for the 'etc' modules so that it does not end up as a new dsource collection of many unmaintained, some dead and a few live projects. I don't see wh

Re: SQLite Bindings

2011-03-14 Thread Jonas Drewsen
On 14/03/11 00.07, Jonathan M Davis wrote: On Sunday 13 March 2011 14:56:34 Jonas Drewsen wrote: On 13/03/11 18.29, dsimcha wrote: One of the features I miss most in Phobos is support for SQLite. Several people have written bindings and wrappers and haven't gotten much attention. (For example:

Re: SQLite Bindings

2011-03-13 Thread Andrej Mitrovic
On 3/14/11, Jesse Phillips wrote: > So if the Phobos devs are willing, lets git some of these in. > I see you are very committed to the cause. :p

Re: SQLite Bindings

2011-03-13 Thread Jesse Phillips
libcurl, SQLite, libpng, libbzip2, and the WindowsAPI stuff all sound like Excellent items to include for standard distribution. It is really nice to just have these items available like zlib and zip. Personally I think Lua would make a nice standard extension language, but the license is MIT.

Re: SQLite Bindings

2011-03-13 Thread Andrej Mitrovic
Wrapping is also bug-prone. htod could fail to translate a header file perfectly, and it won't work good with macros. E.g.: http://stackoverflow.com/questions/5204460/problems-converting-a-c-header-to-d . You could accidentally put the wrong calling convention (or rather, htod will), and this will

Re: SQLite Bindings

2011-03-13 Thread dsimcha
On 3/13/2011 5:56 PM, Jonas Drewsen wrote: It's a great idea. But I think there need to be some kind of janitor for the 'etc' modules so that it does not end up as a new dsource collection of many unmaintained, some dead and a few live projects. I don't see why this is a concern. This is what

Re: SQLite Bindings

2011-03-13 Thread Jonathan M Davis
On Sunday 13 March 2011 14:56:34 Jonas Drewsen wrote: > On 13/03/11 18.29, dsimcha wrote: > > One of the features I miss most in Phobos is support for SQLite. Several > > people have written bindings and wrappers and haven't gotten much > > attention. (For example: https://github.com/bayun/SQLite3-

Re: SQLite Bindings

2011-03-13 Thread Daniel Gibson
Am 13.03.2011 18:29, schrieb dsimcha: One of the features I miss most in Phobos is support for SQLite. Several people have written bindings and wrappers and haven't gotten much attention. (For example: https://github.com/bayun/SQLite3-D ). IMHO, we should do the following: 1. Put SQLite binding

Re: SQLite Bindings

2011-03-13 Thread Jonas Drewsen
On 13/03/11 18.29, dsimcha wrote: One of the features I miss most in Phobos is support for SQLite. Several people have written bindings and wrappers and haven't gotten much attention. (For example: https://github.com/bayun/SQLite3-D ). IMHO, we should do the following: 1. Put SQLite bindings an

Re: SQLite Bindings

2011-03-13 Thread Bane
That is great idea. I already hove something similar i n library I use for work, bunch of headers converted for D, from opeanAL to libpq (postgres), sqlite etc. That can be placed in both D1 and D2 without any problem.