You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import std.database;
main(){
auto db = Database.create("MYDB");
db.execute("insert into table('name',123)");
}
no property 'execute' for type 'Database'
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...