0.4.0 • Published 8 years ago

firenze-adapter-mysql v0.4.0

Weekly downloads
20
License
MIT
Repository
github
Last release
8 years ago

firenze-adapter-mysql

Build Status npm Join the chat at https://gitter.im/fahad19/firenze

MySQL adapter for firenze.js ORM

Install it with npm:

$ npm install --save firenze firenze-adapter-mysql

Usage

var f = require('firenze');
var Database = f.Database;
var MysqlAdapter = require('firenze-adapter-mysql');

var db = new Database({
  adapter: MysqlAdapter,
  host: '127.0.0.1',
  port: 3306,
  database: 'my_database',
  user: 'root',
  password: '',
  pool: {
    min: 0,
    max: 1
  }
});

Testing

Tests are written with mocha, and can be run via this command:

$ npm test

License

MIT © Fahad Ibnay Heylaal

0.4.0

8 years ago

0.3.0

8 years ago

0.2.1

9 years ago

0.2.0

9 years ago

0.1.4

9 years ago

0.1.3

9 years ago

0.1.2

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago