/**
*
**/
Sql.Table = new Class
({
Extends: Sql.Target
,Properties:
{
name:
type: String
,value: null
},
schema:
}
,render: function (batch)
var sql = this.schema ? '`' + this.schema + '`.' : '';
sql += '`' + this.name + '`';
return sql;
});