DDBI是D语言用来连接各种SQL兼容数据库的通用接口,目前支持的数据库包括:
MSSQLServer&SybaseMySQLODBCPostgreSQLSQLite3另外已经开始在开发的数据库包括:
InterBasemSQLOracle示例代码:
importdbi.sqlite.SqliteDatabase;importdbi.Row;importtango.io.Stdout;voidmain(){SqliteDatabasedb=newSqliteDatabase();db.connect("test.db");Row[]rows=db.queryFetchAll("SELECT*FROMnames");foreach(Rowrow;rows){Stdout("name:")(row["name"]).newline()("zip:")(row["zip"]).newline();}db.close();
评论