D2 postgresql interface - Phobos2?

2011-01-06 Thread %fil
Hi, I was wondering if there is a postgresql db (D native) interface available for D2? Also, are there any plans to have a common DB interface in Phobos2? Many thanks, fil

Re: D2 postgresql interface - Phobos2?

2011-05-22 Thread Mandeep Singh Brar
Hi, Further to discussion on the above topic around Jan, I have uploaded a D2/Phobos based port of postgres and sqlite jdbc drivers to http://dsource.org/projects/ddbc This also contains a port of libodbcxx. A sample program working with the library has also been put up. Its just an initial por

Re: D2 postgresql interface - Phobos2?

2011-01-06 Thread Piotr Szturmaj
I was wondering if there is a postgresql db (D native) interface available for D2? Hi, I'm currently writing one for D2 using postgresql's low level protocol directly (instead of using libpq). It supports binary formatting, so no parsing or converting to string/escaping is needed and that sho

Re: D2 postgresql interface - Phobos2?

2011-01-06 Thread Piotr Szturmaj
I was wondering if there is a postgresql db (D native) interface available for D2? Hi, I'm currently writing one for D2 using postgresql's low level protocol directly (instead of using libpq). It supports binary formatting, so no parsing or converting to string/escaping is needed and that sho

Re: D2 postgresql interface - Phobos2?

2011-01-06 Thread Mandeep Singh Brar
Me too. Trying to port postgres JDBC driver to D. Already have somewhat working ODBC bridge. (ported libodbc++). Regards Mandeep

Re: D2 postgresql interface - Phobos2?

2011-01-07 Thread %fil
Hi Piotr, How cool. Very glad you're going native D. I've used Npgsql a lot and also the more standard data.sqlclient interface from c# so I'm happy you're modeling after that API. In your "general" API, will you support the more advanced features like creating functions, refcursors, preplanning q

Re: D2 postgresql interface - Phobos2?

2011-01-07 Thread Piotr Szturmaj
How cool. Very glad you're going native D. I've used Npgsql a lot and also the more standard data.sqlclient interface from c# so I'm happy you're modeling after that API. In your "general" API, will you support the more advanced features like creating functions, refcursors, preplanning queries, et