cruisercoder / dstddb

A proposed standard database interface and library for D
MIT License
28 stars 10 forks source link

Example didn't seem to work. #1

Open taylorh140 opened 8 years ago

taylorh140 commented 8 years ago

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

cruisercoder commented 8 years ago

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

taylorh140 commented 8 years ago

ODBC I believe, Also in your example $HOME/db.json did you mean dub.json I'm running Windows :( I have no $HOME

BTW: It's really cool of you to put this library together.