關於node操作mysql資料庫範例程式碼分享

黄舟
發布: 2017-03-18 14:21:26
原創
1277 人瀏覽過

這篇文章主要介紹了node操作mysql資料庫,結合實例形式較為詳細的分析了node操作資料庫的連接、增刪改查、事務處理及錯誤處理相關操作技巧,需要的朋友可以參考下

本文實例講述了node操作mysql資料庫的方法。分享給大家參考,如下:

1、建立資料庫連線createConnection(<a href="http://www.php.cn/wiki/60.html" target="_blank">Object</a>)方法

此方法接受一個物件作為參數,該物件有四個常用的屬性host,user,password,database。與php中連結資料庫的參數相同。屬性清單如下:

host 連線資料庫所在的主機名稱.(預設: localhost)
port 連接埠. (預設: 3306)
#localAddress 用於TCP連線的IP位址. (可選)
socketPath 連結到unix域的路徑。使用host和port時該參數會被忽略.
user MySQL使用者的使用者名稱.
password MySQL使用者的密碼.
database #連結到的資料庫名稱(可選).
charset 連接的字元集.(預設: 'UTF8_GENERAL_CI'.設定該值要使用大寫!)
timezone #儲存本地時間的時區. (預設: 'local')
stringifyObjects 是否序列化物件. See issue #501. (默認: 'false')
insecureAuth 是否允許舊的驗證方法連接到資料庫實例.(預設: false)
#typeCast 確定是否講column值轉換為本機Javascript類型列值. (預設: true)
queryFormat #自訂的查詢語句格式化函數.
supportBigNumbers 資料庫處理大數字(長整數與含小數),時應該啟用(預設: false).
bigNumberStrings 啟用supportBigNumbers和bigNumberStrings 並強制這些數字以字串的方式傳回(默認: false).
dateStrings 強制日期類型(TIMESTAMP, DATETIME, DATE)以字串返回,而不是一javascript Date物件返回. (預設: false )
debug 是否開啟偵錯. (預設: false)
multipleStatements 是否允許在一個query中傳遞多個查詢語句. (Default: false)
#flags 連結標誌.

也可以使用

字串連線資料庫例如:

var connection = mysql.createConnection(&#39;mysql://user:pass@host/db?debug=true&charset=BIG5_CHINESE_CI&timezone=-0700&#39;);
登入後複製
2、結束資料庫連線

end()destroy( )

end()接受一個

回呼函數

,並且會在query結束之後才觸發,如果query出錯,仍然會終止鏈接,錯誤會傳遞到回調函數中處理。

destroy()立即終止資料庫連接,即使還有query沒有完成,之後的回呼函數也不會在觸發。 3、建立連線池createPool(Object)可以監聽connection事件session
pool.on(&#39;connection&#39;, function(connection) {
 connection.query(&#39;SET SESSION auto_increment_increment=1&#39;)
});
登入後複製
connection.release()釋放連結到連線池。如果需要關閉連接並且刪除,則需要使用connection.destroy()createConnection用於建立連結的函數. (Default: mysql.createConnection)waitForConnections
  Object和createConnection參數相同。
,並設定
pool除了接受和connection相同的參數外,還接受幾個擴充的參數
##決定當沒有連線池或連結數打到最大值時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(&#39;MASTER&#39;, masterConfig);
poolCluster.add(&#39;SLAVE1&#39;, slave1Config);
poolCluster.add(&#39;SLAVE2&#39;, 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(&#39;MASTER&#39;, function (err, connection) {});
// Target Group : SLAVE1-2, Selector : order
// If can&#39;t connect to SLAVE1, return SLAVE2. (remove SLAVE1 in the cluster)
poolCluster.on(&#39;remove&#39;, function (nodeId) {
   console.log(&#39;REMOVED NODE : &#39; + nodeId); // nodeId = SLAVE1
});
poolCluster.getConnection(&#39;SLAVE*&#39;, &#39;ORDER&#39;, function (err, connection) {});
// of namespace : of(pattern, selector)
poolCluster.of(&#39;*&#39;).getConnection(function (err, connection) {});
var pool = poolCluster.of(&#39;SLAVE*&#39;, &#39;RANDOM&#39;);
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 : &#39;john&#39;}, function(err) {
 if (err) throw err;
});
登入後複製

参数

user新的用户 (默认为早前的一个).
password新用户的新密码 (默认为早前的一个).
charset新字符集 (默认为早前的一个).
database新数据库名称 (默认为早前的一个).

6、处理服务器连接断开

var db_config = {
  host: &#39;localhost&#39;,
  user: &#39;root&#39;,
  password: &#39;&#39;,
  database: &#39;example&#39;
};
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(&#39;error when connecting to db:&#39;, 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&#39;re also serving http, display a 503 error.
 connection.on(&#39;error&#39;, function(err) {
  console.log(&#39;db error&#39;, err);
  if(err.code === &#39;PROTOCOL_CONNECTION_LOST&#39;) { // 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 = &#39;some user provided value&#39;;
var sql  = &#39;SELECT * FROM users WHERE id = &#39; + connection.escape(userId);
connection.query(sql, function(err, results) {
   // ...
});
登入後複製

或者使用?作为占位符

connection.query(&#39;SELECT * FROM users WHERE id = ?&#39;, [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: &#39;Hello MySQL&#39;};
var query = connection.query(&#39;INSERT INTO posts SET ?&#39;, post, function(err, result) {
   // Neat!
});
console.log(query.sql); // INSERT INTO posts SET `id` = 1, `title` = &#39;Hello MySQL&#39;
登入後複製

或者手动转换

var query = "SELECT * FROM posts WHERE title=" + mysql.escape("Hello MySQL");
console.log(query); // SELECT * FROM posts WHERE title=&#39;Hello MySQL&#39;
登入後複製

8、转换查询标识符

如果不能信任SQL标识符(数据库名、表名、列名),可以使用转换方法mysql.escapeId(identifier);

var sorter = &#39;date&#39;;
var query = &#39;SELECT * FROM posts ORDER BY &#39; + mysql.escapeId(sorter);
console.log(query); // SELECT * FROM posts ORDER BY `date`
登入後複製

支持转义多个

var sorter = &#39;date&#39;;
var query = &#39;SELECT * FROM posts ORDER BY &#39; + mysql.escapeId(&#39;posts.&#39; + sorter);
console.log(query); // SELECT * FROM posts ORDER BY `posts`.`date`
登入後複製

可以使用??作为标识符的占位符

var userId = 1;
var columns = [&#39;username&#39;, &#39;email&#39;];
var query = connection.query(&#39;SELECT ?? FROM ?? WHERE id = ?&#39;, [columns, &#39;users&#39;, 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 = [&#39;users&#39;, &#39;id&#39;, 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(&#39;INSERT INTO posts SET ?&#39;, {title: &#39;test&#39;}, function(err, result) {
   if (err) throw err;
   console.log(result.insertId);
  });
登入後複製

12、流处理

有时你希望选择大量的行并且希望在数据到达时就处理他们,你就可以使用这个方法

var query = connection.query(&#39;SELECT * FROM posts&#39;);
  query
   .on(&#39;error&#39;, function(err) {
    // Handle error, an &#39;end&#39; event will be emitted after this as well
   })
   .on(&#39;fields&#39;, function(fields) {
    // the field packets for the rows to follow
   })
   .on(&#39;result&#39;, function(row) {
    // Pausing the connnection is useful if your processing involves I/O
    connection.pause();
    processRow(row, function() {
     connection.resume();
    });
   })
   .on(&#39;end&#39;, function() {
    // all rows have been received
   });
登入後複製

13、混合查询语句(多语句查询)

因为混合查询容易被SQL注入攻击,默认是不允许的,可以使用:

var connection = mysql.createConnection({multipleStatements: true});
登入後複製

开启该功能。

混合查询实例:

connection.query(&#39;SELECT 1; SELECT 2&#39;, 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(&#39;SELECT 1; SELECT 2&#39;);
  query
   .on(&#39;fields&#39;, function(fields, index) {
    // the fields for the result rows that follow
   })
   .on(&#39;result&#39;, 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(&#39;INSERT INTO posts SET title=?&#39;, title, function(err, result) {
    if (err) {
     connection.rollback(function() {
      throw err;
     });
    }
    var log = &#39;Post &#39; + result.insertId + &#39; added&#39;;
    connection.query(&#39;INSERT INTO log SET data=?&#39;, log, function(err, result) {
     if (err) {
      connection.rollback(function() {
       throw err;
      });
     }
     connection.commit(function(err) {
      if (err) {
       connection.rollback(function() {
        throw err;
       });
      }
      console.log(&#39;success!&#39;);
     });
    });
   });
  });
登入後複製

15、错误处理

err.code = string
err.fatal => boolean
登入後複製

以上是關於node操作mysql資料庫範例程式碼分享的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!