本文实例讲述了node操作MysqL数据库的方法。分享给大家供大家参考,具体如下:
:
createConnection(Object)
方法
该方法接受一个对象作为参数,该对象有四个常用的属性host,user,password,database。与PHP中链接数据库的参数相同。属性列表如下:
数据库所在的主机名. (默认: localhost)链接到unix域的路径。在使用host和port时该参数会被忽略.MysqL用户的用户名.MysqL用户的密码.链接到的数据库名称 (可选).方法连接到数据库实例. (默认: false)自定义的查询语句格式化函数.数据库处理大数字(长整型和含小数),时应该启用 (默认: false).查询语句. (Default: false)链接标志.
还可以使用字符串连接数据库例如:
MysqL.createConnection('
MysqL://user:pass@host/db?debug=true&charset=BIG5_CHINESE_CI&timezone=-0700');
end()
和
destroy()
end()接受一个回调函数,并且会在query结束之后才触发,如果query出错,仍然会终止链接,错误会传递到回调函数中处理。
destroy()立即终止数据库连接,即使还有query没有完成,之后的回调函数也不会在触发。
3、创建连接池
createPool(Object)
Object和createConnection参数相同。
可以监听connection事件,并设置session值
connection.release()释放链接到连接池。如果需要关闭连接并且删除,需要使用connection.destroy()
pool除了接受和connection相同的参数外,还接受几个扩展的参数
链接的函数. (Default: MysqL.createConnection)链接数打到最大值时pool的行为. 为true时链接会被放入队列中在可用是调用,为false时会立即返回error. (Default: true)
4、连接池集群
允许不同的host链接
MysqL.createPoolCluster();
poolCluster.add(config); // anonymous group
poolCluster.add('MASTER',masterConfig);
poolCluster.add('SLAVE1',slave1Config);
poolCluster.add('SLAVE2',slave2Config);
// Target Group : ALL(anonymous,MASTER,SLAVE1-2),Selector : round-robin(default)
poolCluster.getConnection(function (err,connection) {});
// Target Group : MASTER,Selector : round-robin
poolCluster.getConnection('MASTER',function (err,connection) {});
// Target Group : SLAVE1-2,Selector : order
// If can't connect to SLAVE1,return SLAVE2. (remove SLAVE1 in the cluster)
poolCluster.on('remove',function (nodeId) {
console.log('REMOVED NODE : ' + nodeId); // nodeId = SLAVE1
});
poolCluster.getConnection('SLAVE*','ORDER',connection) {});
// of namespace : of(pattern,selector)
poolCluster.of('*').getConnection(function (err,connection) {});
var pool = poolCluster.of('SLAVE*','RANDOM');
pool.getConnection(function (err,connection) {});
pool.getConnection(function (err,connection) {});
// destroy
poolCluster.end();
链接集群的可选参数
增加. 当errorCount 值大于 removeNodeErrorCount 将会从PoolCluster中删除一个节点. (Default: 5)随机函数选择节点.
5、切换用户/改变连接状态
MysqL允许在比断开连接的的情况下切换用户
参数
用户 (默认为早前的一个).新用户的新密码 (默认为早前的一个).数据库名称 (默认为早前的一个).
6、处理服务器连接断开
MysqL.createConnection(db_config); // Recreate the connection,since
// the old one cannot be reused.
connection.connect(function(err) { // The server is either down
if(err) { // or restarting (takes a while sometimes).
console.log('error when connecting to db:',err);
setTimeout(handleDisconnect,2000); // We introduce a delay before attempting to reconnect,} // to avoid a hot loop,and to allow our node script to
}); // process asynchronous requests in the meantime.
// If you're also serving http,display a 503 error.
connection.on('error',function(err) {
console.log('db error',err);
if(err.code === 'PROTOCOL_CONNECTION_LOST') { // Connection to the
MysqL server is usually
handleDisconnect(); // lost due to either server restart,or a
} else { // connnection idle timeout (the wait_timeout
throw err; // server variable configures this)
}
});
}
handleDisconnect();
7、转义查询值
为了避免sql注入攻击,需要转义用户提交的数据。可以使用connection.escape()
或者 pool.escape()
例如:
sql = 'SELECT * FROM users WHERE id = ' + connection.escape(userId);
connection.query(
sql,function(err,results) {
// ...
});
或者使用?作为占位符
不同类型值的转换结果
['a','b'] 转换为 'a','b'
嵌套数组 [['a','b'],['c','d']] 转换为 ('a','b'),('c','d')
Objects 转换为 key = 'val' pairs. 嵌套对象转换为字符串.
undefined / null ===> NULL
NaN / Infinity 不变. MysqL 不支持这些值,除非有工具支持,否则插入这些值会引起错误.
转换实例:
MysqL'};
var query = connection.query('INSERT INTO posts SET ?',post,result) {
// Neat!
});
console.log(query.
sql); // INSERT INTO posts SET `id` = 1,`title` = 'Hello
MysqL'
或者手动转换
MysqL.escape("Hello
MysqL");
console.log(query); // SELECT * FROM posts WHERE title='Hello
MysqL'
8、转换查询标识符
如果不能信任sql标识符(数据库名、表名、列名),可以使用转换方法MysqL.escapeId(identifier);
MysqL.escapeId(sorter);
console.log(query); // SELECT * FROM posts ORDER BY `date`
支持转义多个
MysqL.escapeId('posts.' + sorter);
console.log(query); // SELECT * FROM posts ORDER BY `posts`.`date`
可以使用??作为标识符的占位符
sql); // SELECT `username`,`email` FROM `users` WHERE id = 1
可以使用MysqL.format来准备查询语句,该函数会自动的选择合适的方法转义参数。
sql = "SELECT * FROM ?? WHERE ?? = ?";
var inserts = ['users','id',userId];
sql =
MysqL.format(
sql,inserts);
MysqL" });
11、获取插入行的id
当使用自增主键时获取插入行id,如:
12、流处理
有时你希望选择大量的行并且希望在数据到达时就处理他们,你就可以使用这个方法
13、混合查询语句(多语句查询)
因为混合查询容易被sql注入攻击,默认是不允许的,可以使用:
MysqL.createConnection({multipleStatements: true});
开启该功能。
混合查询实例:
同样可以使用流处理混合查询结果:
如果其中一个查询语句出错,Error对象会包含err.index指示错误语句的id,整个查询也会终止。
混合查询结果的流处理方式是做实验性的,不稳定。
14、事务处理
connection级别的简单事务处理
15、错误处理
boolean
更详细的说明请查看:https://github.com/felixge/node-MysqL
希望本文所述对大家nodejs程序设计有所帮助。
原文链接:https://www.f2er.com/nodejs/40622.html