이 글에서는 주로 노드 운영을 소개합니다mysql 데이터베이스를 기반으로 노드 운영 데이터베이스의 연결, 추가, 삭제, 수정, 트랜잭션 처리 및 오류 처리를 자세히 분석합니다. 운영 스킬이 필요한 친구들은
을 참고하세요. 이 글은 node가 mysql 데이터베이스를 어떻게 운영하는지 예시를 통해 설명하고 있습니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 사항은 다음과 같습니다.
1. 데이터베이스 연결 설정 : createConnection(<a href="http://www.php%20.cn/wiki/%2060.html" target="_blank">객체<code>createConnection(<a href="http://www.php.cn/wiki/60.html" target="_blank">Object</a>)
)메서드
이 메소드는 객체를 매개변수로 허용하며, 여기에는 일반적으로 사용되는 4가지 속성인 호스트, 사용자가 있습니다. , 비밀번호, 데이터베이스. PHP의 데이터베이스 링크와 동일한 매개변수입니다. 속성 목록은 다음과 같습니다:
host |
데이터베이스
|
||||||||||||||||||||||||||||||||||||||
port | 연결 포트. (기본값: 3306) | ||||||||||||||||||||||||||||||||||||||
localAddress | TCP 연결에 사용되는 IP 주소. | ||||||||||||||||||||||||||||||||||||||
socketPath | unix 도메인에 연결된 경로입니다. 호스트 및 포트를 사용할 때 이 매개변수는 무시됩니다. | ||||||||||||||||||||||||||||||||||||||
user | MySQL 사용자의 사용자 이름. | ||||||||||||||||||||||||||||||||||||||
password | MySQL 사용자의 비밀번호. | ||||||||||||||||||||||||||||||||||||||
데이터베이스 | 링크할 데이터베이스의 이름( 선택 사항). | ||||||||||||||||||||||||||||||||||||||
charset | 연결에 대한 문자 집합입니다. (기본값: 'UTF8_GENERAL_CI'. 이 값을 설정할 때는 대문자를 사용하세요!) | timezone | 현지 시간이 저장되는 시간대입니다. (기본값: 'local') | ||||||||||||||||||||||||||||||||||||
string if yObjects |
객체 직렬화 여부는 문제 #501을 참조하세요. 기본값: 'false') | ||||||||||||||||||||||||||||||||||||||
insecureAuth | 이전 인증 방법을 데이터베이스 인스턴스에 연결할 수 있는지 여부(기본값: false) | ||||||||||||||||||||||||||||||||||||||
typeCast | 열 값을 로컬 Javascript 유형 열 값 .(기본값: true) | ||||||||||||||||||||||||||||||||||||||
queryFormat | 사용자 정의된 쿼리 문 형식함수. | ||||||||||||||||||||||||||||||||||||||
supportBigNumbers | 데이터베이스 큰 숫자(긴 정수 및 소수)를 처리합니다. 활성화해야 합니다(기본값: false). | ||||||||||||||||||||||||||||||||||||||
bigNumberStrings | supportBigNumbers 및 bigNumberStrings를 활성화하고 이 숫자를 강제합니다. 문자열 이 반환됩니다(기본값: false). | ||||||||||||||||||||||||||||||||||||||
dateStrings | |||||||||||||||||||||||||||||||||||||||
dateStrings td> | 날짜 유형(TIMESTAMP, DATETIME, DATE)이 javascript Date 객체 대신 문자열로 반환되도록 합니다. 기본값: false) | ||||||||||||||||||||||||||||||||||||||
debug td> | 디버깅 활성화 여부(기본값: false) | ||||||||||||||||||||||||||||||||||||||
multipleStatements | 하나의 쿼리에 여러 개의 쿼리 문이 전달되도록 허용할지 여부(기본값: false) | ||||||||||||||||||||||||||||||||||||||
플래그 | 링크 플래그 . |
사용 가능 문자열 연결데이터베이스 예시:end()
var connection = mysql.createConnection('mysql://user:pass@host/db?debug=true&charset=BIG5_CHINESE_CI&timezone=-0700');
destroy()
2.
end()는
콜백 함수를 허용하며 쿼리가 끝난 후 실행됩니다. 여전히 종료되며 오류는 처리를 위해 콜백 함수로 전달됩니다. destroy()는 쿼리가 완료되지 않더라도 후속 콜백 함수가 실행되지 않습니다. createPool(Object)
3. 연결 풀 생성 Object 및 createConnection 매개변수는 동일합니다. 은 연결
이벤트를 수신하고
session값
pool.on('connection', function(connection) { connection.query('SET SESSION auto_increment_increment=1') });
createConnection | 用于创建链接的函数. (Default: mysql.createConnection) |
waitForConnections | 决定当没有连接池或者链接数打到最大值时pool的行为. 为true时链接会被放入队列中在可用是调用,为false时会立即返回error. (Default: true) |
connectionLimit | 最大连接数. (Default: 10) |
queueLimit | 连接池中连接请求的烈的最大长度,超过这个长度就会报错,值为0时没有限制. (Default: 0) |
4、连接池集群
允许不同的host链接
// create var poolCluster = 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', function (err, 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();
链接集群的可选参数
canRetry | 值为true时,允许连接失败时重试(Default: true) |
removeNodeErrorCount | 当连接失败时 errorCount 值会增加. 当errorCount 值大于 removeNodeErrorCount 将会从PoolCluster中删除一个节点. (Default: 5) |
defaultSelector | 默认选择器. (Default: RR) |
RR | 循环. (Round-Robin) |
RANDOM | 通过随机函数选择节点. |
ORDER | 无条件地选择第一个可用节点. |
5、切换用户/改变连接状态
Mysql允许在比断开连接的的情况下切换用户
connection.changeUser({user : 'john'}, function(err) { if (err) throw err; });
参数
user | 新的用户 (默认为早前的一个). |
password | 新用户的新密码 (默认为早前的一个). |
charset | 新字符集 (默认为早前的一个). |
database | 新数据库名称 (默认为早前的一个). |
6、处理服务器连接断开
var db_config = { host: 'localhost', user: 'root', password: '', database: 'example' }; var connection; function handleDisconnect() { connection = 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()
例如:
var userId = 'some user provided value'; var sql = 'SELECT * FROM users WHERE id = ' + connection.escape(userId); connection.query(sql, function(err, results) { // ... });
或者使用?作为占位符
connection.query('SELECT * FROM users WHERE id = ?', [userId], function(err, results) { // ... });
不同类型值的转换结果
Numbers 不变
Booleans 转换为字符串 'true' / 'false'
Date 对象转换为字符串 'YYYY-mm-dd HH:ii:ss'
Buffers 转换为是6进制字符串
Strings 不变
Arrays => ['a', 'b'] 转换为 'a', 'b'
嵌套数组 [['a', 'b'], ['c', 'd']] 转换为 ('a', 'b'), ('c', 'd')
Objects 转换为 key = 'val' pairs. 嵌套对象转换为字符串.
undefined / null ===> NULL
NaN / Infinity 不变. MySQL 不支持这些值, 除非有工具支持,否则插入这些值会引起错误.
转换实例:
var post = {id: 1, title: 'Hello MySQL'}; var query = connection.query('INSERT INTO posts SET ?', post, function(err, result) { // Neat! }); console.log(query.sql); // INSERT INTO posts SET `id` = 1, `title` = 'Hello MySQL'
或者手动转换
var query = "SELECT * FROM posts WHERE title=" + mysql.escape("Hello MySQL"); console.log(query); // SELECT * FROM posts WHERE title='Hello MySQL'
8、转换查询标识符
如果不能信任SQL标识符(数据库名、表名、列名),可以使用转换方法mysql.escapeId(identifier);
var sorter = 'date'; var query = 'SELECT * FROM posts ORDER BY ' + mysql.escapeId(sorter); console.log(query); // SELECT * FROM posts ORDER BY `date`
支持转义多个
var sorter = 'date'; var query = 'SELECT * FROM posts ORDER BY ' + mysql.escapeId('posts.' + sorter); console.log(query); // SELECT * FROM posts ORDER BY `posts`.`date`
可以使用??作为标识符的占位符
var userId = 1; var columns = ['username', 'email']; var query = connection.query('SELECT ?? FROM ?? WHERE id = ?', [columns, 'users', userId], function(err, results) { // ... }); console.log(query.sql); // SELECT `username`, `email` FROM `users` WHERE id = 1
9、准备查询
可以使用mysql.format来准备查询语句,该函数会自动的选择合适的方法转义参数。
var sql = "SELECT * FROM ?? WHERE ?? = ?"; var inserts = ['users', 'id', userId]; sql = mysql.format(sql, inserts);
10、自定义格式化函数
connection.config.queryFormat = function (query, values) { if (!values) return query; return query.replace(/\:(\w+)/g, function (txt, key) { if (values.hasOwnProperty(key)) { return this.escape(values[key]); } return txt; }.bind(this)); }; connection.query("UPDATE posts SET title = :title", { title: "Hello MySQL" });
11、获取插入行的id
当使用自增主键时获取插入行id,如:
connection.query('INSERT INTO posts SET ?', {title: 'test'}, function(err, result) { if (err) throw err; console.log(result.insertId); });
12、流处理
有时你希望选择大量的行并且希望在数据到达时就处理他们,你就可以使用这个方法
var query = connection.query('SELECT * FROM posts'); query .on('error', function(err) { // Handle error, an 'end' event will be emitted after this as well }) .on('fields', function(fields) { // the field packets for the rows to follow }) .on('result', function(row) { // Pausing the connnection is useful if your processing involves I/O connection.pause(); processRow(row, function() { connection.resume(); }); }) .on('end', function() { // all rows have been received });
13、混合查询语句(多语句查询)
因为混合查询容易被SQL注入攻击,默认是不允许的,可以使用:
var connection = mysql.createConnection({multipleStatements: true});
开启该功能。
混合查询实例:
connection.query('SELECT 1; SELECT 2', function(err, results) { if (err) throw err; // `results` is an array with one element for every statement in the query: console.log(results[0]); // [{1: 1}] console.log(results[1]); // [{2: 2}] });
同样可以使用流处理混合查询结果:
var query = connection.query('SELECT 1; SELECT 2'); query .on('fields', function(fields, index) { // the fields for the result rows that follow }) .on('result', function(row, index) { // index refers to the statement this result belongs to (starts at 0) });
如果其中一个查询语句出错,Error对象会包含err.index指示错误语句的id,整个查询也会终止。
混合查询结果的流处理方式是做实验性的,不稳定。
14、事务处理
connection级别的简单事务处理
connection.beginTransaction(function(err) { if (err) { throw err; } connection.query('INSERT INTO posts SET title=?', title, function(err, result) { if (err) { connection.rollback(function() { throw err; }); } var log = 'Post ' + result.insertId + ' added'; connection.query('INSERT INTO log SET data=?', log, function(err, result) { if (err) { connection.rollback(function() { throw err; }); } connection.commit(function(err) { if (err) { connection.rollback(function() { throw err; }); } console.log('success!'); }); }); }); });
15、错误处理
err.code = string err.fatal => boolean
위 내용은 노드 운영 mysql 데이터베이스 샘플 코드 공유에 대해의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!