Exemplo 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));
     }
 }
Exemplo 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));
     }
 }
Exemplo n.º 3
0
 public string GetQuotedName(QuoteMode mode = QuoteMode.WhenNecessary)
 {
     return(RedshiftUtility.GetQuotedIdentifier(this.Name, mode));
 }