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

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