Esempio n. 1
0
 public string GetQualifiedName(QuoteMode mode = QuoteMode.WhenNecessary)
 {
     if (this.Schema == null)
     {
         return(RedshiftUtility.GetQuotedIdentifier(this.Name, mode, false));
     }
     else
     {
         return(RedshiftUtility.GetQualifiedName(this.Schema.Name, this.Name, mode));
     }
 }
Esempio n. 2
0
 public string GetQualifiedName(QuoteMode mode = QuoteMode.WhenNecessary)
 {
     if (this.Parent == null)
     {
         return(RedshiftUtility.GetQuotedIdentifier(this.Name, mode, false));
     }
     else
     {
         return(this.Parent.GetQualifiedName(mode) + '.' + RedshiftUtility.GetQuotedIdentifier(this.Name, mode, true));
     }
 }
Esempio n. 3
0
 public string GetQuotedName(QuoteMode mode = QuoteMode.WhenNecessary)
 {
     return(RedshiftUtility.GetQuotedIdentifier(this.Name, mode));
 }