mirror of
https://github.com/knex/knex.git
synced 2025-10-04 12:37:29 +00:00
12 lines
215 B
JavaScript
12 lines
215 B
JavaScript
![]() |
|
||
|
function Transaction_WebSQL(client) {
|
||
|
this.client = client
|
||
|
}
|
||
|
|
||
|
Transaction_WebSQL.prototype.run = function(container) {
|
||
|
return Promise.try(function() {
|
||
|
return container(this.client.makeKnex(client))
|
||
|
})
|
||
|
}
|
||
|
|