Dmitry Bubnenkov

Results 52 issues of Dmitry Bubnenkov

Basic example from docs works fine: ``` auto xml = "\n" ~ " \n" ~ " \n" ~ " \n" ~ " \n" ~ " \n" ~ " \n" ~...

I need to get position of end (closing tag). But I can't figure out how to do it. Could anybody give me an example or explain how to do it?...

Marco, big thanks for your Json parser, but could you add move examples in readme of how it's can be used?

Please add basic support of this DB!

How to specify login and pass for connection to DB?

Do you plan implement support of all DBs from scratch or dstddb would include same wrappers? I mean that there is for example perfect native driver for PG https://github.com/etcimon/ddb Is...

`createDatabase("file:///C://code//sqlLiteDBFullName.db").query("CREATE TABLE IF NOT EXISTS ddbct1 (ts text)");` `Running .\dbsync.exe sqlite opening file: C://code//sqlLiteDBFullName.db 2016-04-06T13:32:04.449:C:\Users\bubenkov_di\AppData\Roaming\dub\packages\dstddb -0.0.3\dstddb\src\std\database\sqlite\database.d:query:268 sqlite3_step: status: 101` And no result on C://code// folder. Also why do I need...

If to try to create sqllite on not exist path like: `try{ createDatabase("file:///C://code1//sqlLiteDBFullName.db").query("CREATE TABLE IF NOT EXISTS ddbct1 (ts text)"); } catch(Exception e) { writeln(e.msg); }` We will get error:...

` auto db = createDatabase("file:///" ~ sqlLiteDBName).query("CREATE TABLE IF NOT EXISTS MySyncData (guid text, id integer, name text, fl integer)"); auto con = db.connection(); ` Output: ` source\app.d(104,28): Error: template...

import std.database.sqlite; import std.database; .... auto db = createDatabase("file:///" ~ sqlLiteDBName).query("CREATE TABLE IF NOT EXISTS MySyncData (guid text, id integer, name text, fl integer)"); db.query(`insert into MySyncData values("sometext",14)`); error: `source\app.d(103,6):...