Ejemplo n.º 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());
        }
Ejemplo n.º 2
0
 public Delete(SqlIdentifierCollection tables, Where whereClause)
     : this(tables)
 {
     this.WhereClause = whereClause;
 }
Ejemplo n.º 3
0
 public Delete(SqlIdentifierCollection tables)
     : this()
 {
     this.Tables = tables;
 }
Ejemplo n.º 4
0
 public Query(SqlIdentifierCollection tables)
     : this()
 {
     this.Tables = tables;
 }
Ejemplo n.º 5
0
 public Statement(SqlIdentifierCollection tables)
     : this()
 {
     this.Tables = tables;
 }
Ejemplo n.º 6
0
 public Insert(SqlIdentifierCollection tables)
     : this()
 {
     this.Tables = tables;
 }
Ejemplo n.º 7
0
 public Select(SqlIdentifierCollection tables, bool forUpdate)
     : base(tables)
 {
     this.ForUpdate = forUpdate;
 }
Ejemplo n.º 8
0
 public Select(SqlIdentifierCollection tables)
     : base(tables)
 {
 }