2016-01-26 19:29:12 -05:00
|
|
|
|
2015-12-03 20:43:42 -05:00
|
|
|
'use strict';
|
2015-12-02 13:01:31 -05:00
|
|
|
|
2016-01-26 19:29:12 -05:00
|
|
|
/**
|
|
|
|
* Class that wraps database connection libraries
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @param {Object} instance - The connection object
|
|
|
|
*/
|
|
|
|
class Adapter {
|
2015-12-02 13:01:31 -05:00
|
|
|
/**
|
2015-12-03 20:43:42 -05:00
|
|
|
* Invoke an adapter
|
|
|
|
*
|
2016-01-26 19:29:12 -05:00
|
|
|
* @constructor
|
|
|
|
* @param {Object} instance - The connection object
|
2015-12-03 20:43:42 -05:00
|
|
|
*/
|
|
|
|
constructor(instance) {
|
2015-12-02 13:01:31 -05:00
|
|
|
this.instance = instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-12-03 20:43:42 -05:00
|
|
|
* Run the sql query as a prepared statement
|
|
|
|
*
|
|
|
|
* @param {String} sql - The sql with placeholders
|
|
|
|
* @param {Array} params - The values to insert into the query
|
2016-01-26 19:29:12 -05:00
|
|
|
* @param {Function} [callback] - Callback to run when a response is recieved
|
|
|
|
* @return {void|Promise} - returns a promise if no callback is passed
|
2015-12-03 20:43:42 -05:00
|
|
|
*/
|
|
|
|
execute(/*sql, params, callback*/) {
|
2015-12-07 15:58:31 -05:00
|
|
|
throw new Error('Correct adapter not defined for query execution');
|
2015-12-03 20:43:42 -05:00
|
|
|
}
|
2015-12-07 15:58:31 -05:00
|
|
|
|
2016-03-15 15:37:24 -04:00
|
|
|
/**
|
|
|
|
* Transform the adapter's result into a standard format
|
|
|
|
*
|
|
|
|
* @param {*} originalResult - the original result object from the driver
|
|
|
|
* @return {Result} - the new result object
|
|
|
|
*/
|
|
|
|
transformResult(originalResult) {
|
|
|
|
throw new Error('Result transformer method not defined for current adapter');
|
|
|
|
}
|
|
|
|
|
2015-12-07 15:58:31 -05:00
|
|
|
/**
|
|
|
|
* Close the current database connection
|
|
|
|
* @return {void}
|
|
|
|
*/
|
|
|
|
close() {
|
2015-12-08 10:06:29 -05:00
|
|
|
this.instance.end();
|
2015-12-07 15:58:31 -05:00
|
|
|
}
|
2016-01-26 19:29:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = Adapter;
|