Example #1
0
 public QueryInfo(ConnectionInfo Conx, ExecutionInfo Exec, List<ErrorInfo> Mistakes, string Script)
 {
     this.Conx = Conx;
     this.Exec = Exec;
     this.Mistakes = Mistakes;
     this.Script = Script;
 }
Example #2
0
 public QueryInfo()
 {
     Conx = new ConnectionInfo();
     Exec = new ExecutionInfo();
     Mistakes = new List<ErrorInfo>();
     Script= "";
 }