This is a simple mybatis-like DAO(NOT ORM) for node.js.
- query mapper and builder
- TODO: connection management
- TODO: promise support(kriskowal's Q)
- TODO: caching
- TODO: validation
- TODO: logging
- TODO: error handling
- DAO(NOT ORM)
$ npm install nobatis
or
$ npm install git@github.com:iolo/node-nobatis.git
- prepare configurations:
var config = {
"dataSource": {
"driver": "mariasql",
"host": "localhost",
"port": 3306,
"user": "root",
"password": "",
"db": "test"
},
"queries": {
"test1.selectAll": "SELECT * FROM test1",
"test1.select": "SELECT * FROM test1 WHERE id=?",
"test1.insert": "INSERT INTO test1(name) VALUES(:name)",
"test1.update": "UPDATE test1 SET name=:name WHERE id=:id",
"test1.delete": "DELETE FROM test1 WHERE id=?"
}
};
-
or you can write configurations to a file(json module)
-
import nobatis module
var nobatis = require('nobatis');
- create
DataSource
with configutaion:
var dataSource = nobatis.createDataSource(config);
- or create one with a configuration file(json module):
var dataSource = nobatis.createDataSource(require('./config'));
- or get the default one:
var dataSource = nobatis.createDataSource();
- now you can
openSession()
:
var session = null;
try {
session = dataSource.openSession();
// use session here …
} finally {
session && session.close();
}
- or work
withSession()
:
dataSource.withSession(function (session) {
// use session here ...
});
- work
withSession()
andpromise
:
dataSource.withSession(function (session) {
// use session and return promise ...
return session.select(...)
.then(function (select_result) {
return session.insert(...);
})
.then(function (insert_result) {
return session.update(...);
})
.then(function (update_result) {
return session.destroy(...);
});
})
.then(function (destroy_result) {
...
})
.catch(function (err) {
...
});
- select multiple rows
session.select('test1.selectAll', [])
.then(function (rows) {
...
})
.catch(function (err) {
...
});
- select multiple rows with row bounds
session.select('test1.selectAll', [], {offset:2, limit:2})
.then(function (rows) {
...
})
.catch(function (err) {
...
});
- select a single row
session.selectOne('test1.select', \[1])
.then(function (row) {
...
.catch(function (err) {
...
});
- insert new row
session.insert('test1.insert', {name:'a'})
.then(function (insertId) {
...
.catch(function (err) {
...
});
- update row(s)
session.update('test1.update', {id:1, name:'a'})
.then(function (affectedRows) {
...
.catch(function (err) {
...
});
- delete row(s)
session.destroy('test1.delete', \[1])
.then(function (affectedRows) {
...
.catch(function (err) {
...
});
- prepare dao object
var nobatis = require('nobatis');
var dataSource = require('nobatis').createDataSource(config);
var dao = nobatis.createDao(dataSource, {
table: 'test1',
primaryKey: 'id',
primaryKeyGenerated: true,
defaults: function () {
return {
id: 0,
name: '',
created: new Date()
};
}
});
- create new object with default attributes
var obj = dao.createNew();
- create new object with custom attributes
var obj = dao.createNew({name:'foo'});
- check the object is saved or not
dao.isNew(obj);
- select an object by primary key
dao.load(pk)
.then(function (obj) {
...
.catch(function (err) {
...
});
- insert/update an object
dao.save(obj)
.then(function (affectedRow-or-insertId) {
...
.catch(function (err) {
...
});
- insert/update an object and reload it
dao.save(obj, true)
.then(function (obj) {
...
.catch(function (err) {
...
});
- delete an object by primary key
dao.destroy(pk)
.then(function (success_or_not) {
...
.catch(function(err) {
...
});
- select all rows
dao.all()
.then(function (rows) {
...
.progress(function (row) {
...
.catch(function(err) {
...
});
- select all rows with bounds
dao.all({offset:10, limit:10})
.then(function (rows, numRows) {
...
.progress(function (row) {
...
.catch(function(err) {
...
});
-
see also
-
may the SOURCE be with you...