Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 515 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 515 Bytes

db-mysql

mysql database plugin for db-core

basic usage

var db:IDatabase = DatabaseFactory.createDatabase(DatabaseFactory.MYSQL, {
    database: "somedb",
    host: "localhost",
    user: "someuser",
    pass: "somepassword"
});
...

See db-core for further information on how to use IDatabase

Note: the act of including this haxelib in your project automatically registers its type with DatabaseFactory