dstddb icon indicating copy to clipboard operation
dstddb copied to clipboard

A proposed standard database interface and library for D

Results 10 dstddb issues
Sort by recently updated
recently updated
newest added

add Mysql and PGsql. get value ib before and store in Variant

Please add basic support of this DB!

How to specify login and pass for connection to DB?

It'd be quite helpful to get FreeTDS bindings, to facilitate connectivity to MS SQL Server and Sybase ASE databases.

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):...

import std.database; main(){ auto db = Database.create("MYDB"); db.execute("insert into table('name',123)"); } no property 'execute' for type 'Database' It makes me wonder if i had it setup right...