2014-10-31 11:57:44 -04:00
|
|
|
'use strict';
|
|
|
|
|
2016-03-11 10:41:04 -05:00
|
|
|
const Adapter = require('../Adapter');
|
|
|
|
const getArgs = require('getargs');
|
|
|
|
const helpers = require('../helpers');
|
|
|
|
const promisify = require('../promisify');
|
|
|
|
const dbliteAdapter = require('dblite');
|
|
|
|
|
|
|
|
class Sqlite extends Adapter {
|
|
|
|
constructor(config) {
|
|
|
|
let file = (helpers.isString(config)) ? config : config.file;
|
|
|
|
super(dbliteAdapter(file));
|
|
|
|
}
|
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 provided
|
2015-12-03 20:43:42 -05:00
|
|
|
*/
|
|
|
|
execute(/*sql, params, callback*/) {
|
2016-01-26 19:29:12 -05:00
|
|
|
let args = getArgs('sql:string, [params]:array, [callback]:function', arguments);
|
|
|
|
|
|
|
|
if (! args.callback) {
|
2016-02-12 11:40:21 -05:00
|
|
|
return promisify(this.instance.query)(args.sql, args.params);
|
2016-01-26 19:29:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return this.instance.query(args.sql, args.params, args.callback);
|
2015-12-02 13:01:31 -05:00
|
|
|
}
|
2015-12-08 10:06:29 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Close the current database connection
|
2016-01-26 19:29:12 -05:00
|
|
|
|
2015-12-08 10:06:29 -05:00
|
|
|
* @return {void}
|
|
|
|
*/
|
|
|
|
close() {
|
|
|
|
this.instance.close();
|
|
|
|
}
|
2016-03-11 10:41:04 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = Sqlite;
|