Example #1
0
 public TFrom(StringBuilder sb)
 {
     this.sql    = sb;
     this.twhere = new TWhere(sb);
     tcondition  = new TCondition(sb);
 }
Example #2
0
 public TFrom(StringBuilder sb)
 {
     this.sql = sb;
     this.twhere = new TWhere(sb);
     tcondition = new TCondition(sb);
 }
Example #3
0
 public TFrom()
 {
     sql        = new StringBuilder();
     twhere     = new TWhere(sql);
     tcondition = new TCondition(sql);
 }
Example #4
0
 public TFrom()
 {
     sql = new StringBuilder();
     twhere = new TWhere(sql);
     tcondition = new TCondition(sql);
 }