public Table GetTable(TableID tid) { if (!this.tableDictionary.ContainsKey(tid)) { return(null); } var table = this.tableDictionary[tid]; return(table); }
public string Escape(TableID tableID) { return(string.Format("{0}", tableID.TableName)); }
public string Escape(TableID tableID) { return(string.Format("\"{1}\"", tableID.SchemaName, tableID.TableName)); }
public string Escape(TableID tableID) { return(string.Format("`{0}`.`{1}`", tableID.SchemaName, tableID.TableName)); }
public string Escape(TableID tableID) { return(string.Format("[{0}].[{1}]", tableID.SchemaName, tableID.TableName)); }