utils.js 340 Bytes
'use strict';

var Utils = require('../oracle/utils');

function BlobHelper(columnName, value) {
  this.columnName = columnName;
  this.value = value;
  this.returning = false;
}

BlobHelper.prototype.toString = function () {
  return '[object BlobHelper:' + this.columnName + ']';
};

Utils.BlobHelper = BlobHelper;
module.exports = Utils;