utils.js 340 B

12345678910111213141516
  1. 'use strict';
  2. var Utils = require('../oracle/utils');
  3. function BlobHelper(columnName, value) {
  4. this.columnName = columnName;
  5. this.value = value;
  6. this.returning = false;
  7. }
  8. BlobHelper.prototype.toString = function () {
  9. return '[object BlobHelper:' + this.columnName + ']';
  10. };
  11. Utils.BlobHelper = BlobHelper;
  12. module.exports = Utils;