Erik Smith

Results 13 comments of Erik Smith

Thanks. Will review this week.

can you tell me what fmt style you used (which dfmt parameters)?

Those can be specified in the URI (see example below). There is also a way to use configuration files but it's not documented yet. auto db = createDatabase("mysql://SERVER/DB?username=UN&password=PW); auto con...

It's being worked on currently. I'm expecting to have basic support within the next day or two.

I've added basic support for freetds in v.0.0.5. Here's an example (set URI values appropriately): auto db = createDatabase("freetds://SERVER/DB?username=UN&password=PW); auto result = db.query("SELECT 1,2,'abc'"); foreach (r; result) { for(int c...

See other threads for an explanation on the query. As far as the slashes: the first two are delimiters for the URI syntax. The third would indicate the start of...

The db variable assignment should not include the query. Here's a improvement: auto db = createDatabase("file://t.db"); db.query("CREATE TABLE IF NOT EXISTS MySyncData (guid text, id integer, a integer)"); auto con...

The framework is too early for real use, but I did update the quickstart section with more info. What is your primary database type?

For the mac, when I enable BACKWARD_HAS_BACKTRACE_SYMBOL=1, the stack traces disappear entirely, even though I am linking in libbacktrace (-lbacktrace, libraries present, libbacktrace.dylib, libbacktrace.0.dylib). I'm hoping to see the ultimate...