Example #1
0
 public FromClause SetTableSource(string table_name, string alias)
 {
     TableSource = new SqlLiteral(table_name);
     Alias       = alias;
     return(this);
 }
Example #2
0
 public ReplaceFunction(ISqlExpression text, ISqlExpression old_text, string new_text)
 {
     Text    = text;
     OldText = old_text;
     NewText = new SqlLiteral(new_text);
 }
Example #3
0
 public ReplaceFunction(string text, string old_text, ISqlExpression new_text)
 {
     Text    = new SqlLiteral(text);
     OldText = new SqlLiteral(old_text);
     NewText = new_text;
 }
Example #4
0
 public ReplaceFunction(string text, string old_text, string new_text)
 {
     Text    = new SqlLiteral(text);
     OldText = new SqlLiteral(old_text);
     NewText = new SqlLiteral(new_text);
 }