function database() {
	this.tables = {};
	this.insert = function(table,row) {
		if(! this.tables[table]) {this.tables[table]=[]}
		this.tables[table].push(row);	
	}
}
var myDatabase = new database();

