示例#1
0
        public string SqlText(SqlIdentifierCollection identifiers)
        {
            var Res = new StringBuilder();

            foreach (var tblName in identifiers)
            {
                if (Res.Length > 0)
                {
                    Res.Append(", ");
                }
                Res.Append(SqlText(tblName));
            }

            return(Res.ToString());
        }
示例#2
0
 public Delete(SqlIdentifierCollection tables, Where whereClause)
     : this(tables)
 {
     this.WhereClause = whereClause;
 }
示例#3
0
 public Delete(SqlIdentifierCollection tables)
     : this()
 {
     this.Tables = tables;
 }
示例#4
0
 public Query(SqlIdentifierCollection tables)
     : this()
 {
     this.Tables = tables;
 }
示例#5
0
 public Statement(SqlIdentifierCollection tables)
     : this()
 {
     this.Tables = tables;
 }
示例#6
0
 public Insert(SqlIdentifierCollection tables)
     : this()
 {
     this.Tables = tables;
 }
示例#7
0
 public Select(SqlIdentifierCollection tables, bool forUpdate)
     : base(tables)
 {
     this.ForUpdate = forUpdate;
 }
示例#8
0
 public Select(SqlIdentifierCollection tables)
     : base(tables)
 {
 }