node-query/lib/adapter.js

17 lines
451 B
JavaScript
Raw Normal View History

2014-10-23 10:53:16 -04:00
'use strict';
/** @module adapter */
module.exports = {
/**
* 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
* @param {Function} callback - Callback to run when a response is recieved
* @return void
*/
2015-11-20 09:14:09 -05:00
execute: function(/*sql, params, callback*/) {
2014-10-23 10:53:16 -04:00
throw new Error("Correct adapter not defined for query execution");
}
};