alasql
Version:
AlaSQL.js - JavaScript SQL database library for relational and graph data manipulation with support of localStorage, IndexedDB, and Excel
31 lines (24 loc) • 457 B
JavaScript
/*
//
// View class for Alasql.js
// Date: 14.11.2014
// (c) 2014, Andrey Gershun
//
*/
// Table class
var View = alasql.View = function(params){
// Columns
this.columns = [];
this.xcolumns = {};
// Data array
this.query = [];
extend(this,params);
};
// View = function(){
// this.data = [];
// this.columns = [];
// this.ixcolumns = {};
// this.ixdefs = {};
// this.indices = {};
// };
// alasql.View = View;