Re: database 0.0.8 released

2017-09-13 Thread Steven Schveighoffer via Digitalmars-d-announce

On 9/12/17 1:14 PM, Brian wrote:
dlang database library: Database abstraction layer for D programing 
language, support PostgreSQL / MySQL / SQLite.


Project:
https://github.com/huntlabs/database

## Database
Database abstraction layer for D programing language, support PostgreSQL 
/ MySQL / SQLite.


I just wanted to point out that in order to bind against libmysqlclient, 
you must use an open-source license, or pay Oracle a license fee. This 
means the users of your library must use an open source license or pay 
the fee (not you), but your license makes it unclear that this is the 
case. More details here: 
https://www.mysql.com/about/legal/licensing/foss-exception/


Or you could instead use the mysql-native library that does not depend 
on Oracle's library: https://github.com/mysql-d/mysql-native


-Steve


The Making of 'D Web Development'

2017-09-13 Thread Mike Parker via Digitalmars-d-announce
I've previously published the stories behind three of the D books 
on the blog. Now we can also read about Kai's 'D Web 
Development'. Just in time for the sale!


The blog:
https://dlang.org/blog/2017/09/13/the-making-of-d-web-development/

Reddit:
https://www.reddit.com/r/programming/comments/6zucei/the_making_of_d_web_development_a_book_about_the/


Re: database 0.0.8 released

2017-09-13 Thread Adam D. Ruppe via Digitalmars-d-announce

On Wednesday, 13 September 2017 at 06:46:59 UTC, Brian wrote:

Welcome to participate! :)


Alas, looking at your source, it is actually not what I wanted... 
 I want to use the database features rather than a reimplemented 
class.


BTW the "escapedVariants" function can help you fill in that 
Statement class' missing methods.


Re: dlang-requetst v0.5.3 released

2017-09-13 Thread Jack Applegame via Digitalmars-d-announce

Thanks!



Re: database 0.0.8 released

2017-09-13 Thread Brian via Digitalmars-d-announce
On Wednesday, 13 September 2017 at 04:30:24 UTC, Vadim Lopatin 
wrote:

On Tuesday, 12 September 2017 at 17:14:27 UTC, Brian wrote:
dlang database library: Database abstraction layer for D 
programing language, support PostgreSQL / MySQL / SQLite.


Project:
https://github.com/huntlabs/database


Did you see DDBC project?
It supports postgres, mysql, and sqlite, too.
API is similar to Java JDBC.


Yes, thanks your project DDBC :)

database is similar to PHP PDO library, no deps, api easy to use.