"use strict"; // // // MSSQL Query Builder // // ------ // var inherits = require('inherits') // var QueryBuilder = require('../../../query/bulder') // var assign = require('lodash/object/assign'); // // function QueryBuilder_MSSQL(client) { // QueryBuilder.call(this, client) // } // inherits(QueryBuilder_MSSQL, QueryBuilder) // // assign(QueryBuilder_MSSQL.prototype, { // // }) // // // Set the QueryBuilder & QueryCompiler on the client object, // // incase anyone wants to modify things to suit their own purposes. // module.exports = QueryBuilder_MSSQL;