Example #1
0
        public Table GetTable(TableID tid)
        {
            if (!this.tableDictionary.ContainsKey(tid))
            {
                return(null);
            }
            var table = this.tableDictionary[tid];

            return(table);
        }
Example #2
0
 public string Escape(TableID tableID)
 {
     return(string.Format("{0}", tableID.TableName));
 }
Example #3
0
 public string Escape(TableID tableID)
 {
     return(string.Format("\"{1}\"", tableID.SchemaName, tableID.TableName));
 }
Example #4
0
 public string Escape(TableID tableID)
 {
     return(string.Format("`{0}`.`{1}`", tableID.SchemaName, tableID.TableName));
 }
Example #5
0
 public string Escape(TableID tableID)
 {
     return(string.Format("[{0}].[{1}]", tableID.SchemaName, tableID.TableName));
 }