knex/lib/dialects/oracle/formatter.js
Tim Griesser f9aab9dc76 Major internal refactor
Beefed up transaction implementation, still needs tests
and cleanup of nested transaction queues.

Left todo:
- Fix commented out tests
- Fix oracle driver's transactions
2015-04-22 10:34:14 -04:00

30 lines
850 B
JavaScript

var inherits = require('inherits')
var assign = require('lodash/object/assign')
var Formatter = require('../../formatter')
var ReturningHelper = require('./utils').ReturningHelper
function Oracle_Formatter(client) {
Formatter.call(this, client)
}
inherits(Oracle_Formatter, Formatter)
assign(Oracle_Formatter.prototype, {
alias: function(first, second) {
return first + ' ' + second;
},
parameter: function(value, notSetValue) {
// returning helper uses always ROWID as string
if (value instanceof ReturningHelper && this.client.driver) {
value = this.client.driver.OutParam(this.client.driver.OCCISTRING)
}
if (typeof value === 'boolean') {
value = value ? 1 : 0
}
return Formatter.prototype.parameter.call(this, value, notSetValue)
}
})
module.exports = Oracle_Formatter