var InsertCompiler = function(builder, formatter) { this.builder = builder; this.formatter = formatter; }; InsertCompiler.prototype = { toSql: function() { var insertData = this.get('insert'); return 'insert into ' + this.tableName + ' ' + insertData.columns + ' values ' + insertData.value; }, prepInsert: function(values) { if (!_.isArray(values)) values = values ? [values] : []; for (var i = 0, l = values.length; i