Exemple #1
0
 protected override bool ReadAnAttribute(System.Xml.XmlReader reader, XmlReaderContext context)
 {
     if (this.IsAttributeMatch(XmlHelper.CheckExists, reader, context))
     {
         this.CheckExists = XmlHelper.ParseEnum <DBExistState>(reader.Value);
         return(true);
     }
     else
     {
         return(base.ReadAnAttribute(reader, context));
     }
 }
Exemple #2
0
 public DBCreateQuery()
     : base()
 {
     this.CheckExists = DBExistState.Unknown;
 }
Exemple #3
0
 public DBUpdateTable()
     : base()
 {
     this.CheckExists = DBExistState.Unknown;
 }