mirror of
https://github.com/knex/knex.git
synced 2025-07-09 10:01:22 +00:00
18 lines
358 B
JavaScript
18 lines
358 B
JavaScript
'use strict';
|
|
|
|
// SQLite3 Transaction
|
|
// -------
|
|
module.exports = function(client) {
|
|
|
|
var inherits = require('inherits');
|
|
var Transaction = require('../../transaction');
|
|
|
|
function Transaction_SQLite3() {
|
|
this.client = client;
|
|
Transaction.apply(this, arguments);
|
|
}
|
|
inherits(Transaction_SQLite3, Transaction);
|
|
|
|
client.Transaction = Transaction_SQLite3;
|
|
|
|
}; |