Why we chose not to use D for our Linux project

Marcin Kuszczak aarti_please_no at spam_interia.pl
Tue May 20 14:33:59 PDT 2008


> Indeed, and DDBI always compiles with the correct combination of compiler
> and Tango :) 

Nope, ddbi does not compile with current version of Tango. You did not test
at least sqlite backend. Below you can see part of SqliteDatabase.d from
trunk version of DDBI:

version (Phobos) {
    private import std.string : toDString = toString, toCString = toStringz;
    debug (UnitTest) private import std.stdio;
} else {
    private import tango.stdc.stringz : toDString = fromUtf8z, toCString =
toUtf8z;
    private import tango.util.log.Log;
}

Do you see problem?: fromUtf8z and toUtf8z already do not exist in Tango.

In Sqlite backend, there is another problem - there is method:
bool execute(StatementBinder binder) but StatementBinder is not committed to
SVN.


-- 
Regards
Marcin Kuszczak (Aarti_pl)
-------------------------------------
Ask me why I believe in Jesus - http://www.zapytajmnie.com (en/pl)
Doost (port of few Boost libraries) - http://www.dsource.org/projects/doost/
-------------------------------------




More information about the Digitalmars-d mailing list