SQLEngine.prototype.collection = function(name) {
    if ( !this.collections[name] ) {
        this.collections[name] = new SQLCollection(this, name);
    }
    return this.collections[name];