mirror of
https://github.com/knex/knex.git
synced 2025-10-09 06:56:23 +00:00
16 lines
343 B
JavaScript
16 lines
343 B
JavaScript
// 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;
|
|
|
|
}; |