Beispiel #1
0
 public SQLVarVal(SQLVarVal value) : base(value.GetName())
 {
     Value   = new SQLVal(value.GetRawValue(), value.GetIsNum());
     Operand = value.GetOperand();
 }
 public void AddBetweenValue2(string value, bool isnum = false)
 {
     Between2 = new SQLVal(value, isnum);
 }
Beispiel #3
0
 //private string Constructor = "";
 /// <summary>
 /// Constructor to create a Variable Value connection variable
 /// </summary>
 /// <param name="nm">The name of the variable</param>
 /// <param name="val">The value of the variable</param>
 /// <param name="isnum">Whether it should be seen as a number</param>
 public SQLVarVal(string nm, string val, string operand = " = ", bool isnum = false) : base(nm)
 {
     Value = new SQLVal(val, isnum);
     //IsNum = isnum;
     Operand = operand;
 }
Beispiel #4
0
 public void Add(SQLVal field)
 {
     Fields.Add(field);
 }