2014-10-23 10:53:16 -04:00
|
|
|
'use strict';
|
|
|
|
|
2016-11-18 21:59:22 -05:00
|
|
|
const Adapter = require('../../Adapter');
|
|
|
|
const Result = require('../../Result');
|
|
|
|
const helpers = require('../../helpers');
|
2016-11-10 22:10:45 -05:00
|
|
|
const mysql2 = require('mysql2/promise');
|
2016-03-11 10:41:04 -05:00
|
|
|
|
|
|
|
class Mysql extends Adapter {
|
|
|
|
|
2016-09-14 16:50:32 -04:00
|
|
|
constructor (config) {
|
2016-11-10 22:10:45 -05:00
|
|
|
const instance = mysql2.createConnection(config);
|
2016-03-11 10:41:04 -05:00
|
|
|
super(instance);
|
|
|
|
}
|
2015-12-03 20:43:42 -05:00
|
|
|
|
2016-03-15 15:37:24 -04:00
|
|
|
/**
|
|
|
|
* Transform the adapter's result into a standard format
|
|
|
|
*
|
|
|
|
* @param {*} result - original driver result object
|
|
|
|
* @return {Result} - standard result object
|
|
|
|
*/
|
2016-09-14 16:50:32 -04:00
|
|
|
transformResult (result) {
|
2016-03-15 15:37:24 -04:00
|
|
|
// For insert and update queries, the result object
|
|
|
|
// works differently. Just apply the properties of
|
|
|
|
// this special result to the standard result object.
|
|
|
|
if (helpers.type(result) === 'object') {
|
|
|
|
let r = new Result();
|
|
|
|
|
|
|
|
Object.keys(result).forEach(key => {
|
|
|
|
r[key] = result[key];
|
|
|
|
});
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
return new Result(result);
|
|
|
|
}
|
|
|
|
|
2015-12-03 20:43:42 -05:00
|
|
|
/**
|
|
|
|
* Run the sql query as a prepared statement
|
|
|
|
*
|
|
|
|
* @param {String} sql - The sql with placeholders
|
2016-11-10 22:10:45 -05:00
|
|
|
* @param {Array|undefined} params - The values to insert into the query
|
2016-11-18 21:59:22 -05:00
|
|
|
* @return {Promise} Result of query
|
2015-12-03 20:43:42 -05:00
|
|
|
*/
|
2016-11-10 22:10:45 -05:00
|
|
|
execute (sql, params) {
|
2016-11-18 21:59:22 -05:00
|
|
|
return this.instance
|
|
|
|
.then(conn => conn.execute(sql, params))
|
|
|
|
.then(result => this.transformResult(result));
|
2015-12-02 13:01:31 -05:00
|
|
|
}
|
2016-03-11 10:41:04 -05:00
|
|
|
}
|
|
|
|
|
2016-09-14 16:50:32 -04:00
|
|
|
module.exports = Mysql;
|