public SQLParameter(string AName, SQLType AType, object AValue, SQLDirection ADirection) : base()
 {
     FName      = AName;
     FType      = AType;
     FValue     = AValue;
     FDirection = ADirection;
 }
Exemple #2
0
 public SQLParameter(string name, SQLType type, object tempValue, SQLDirection direction) : base()
 {
     _name      = name;
     _type      = type;
     _value     = tempValue;
     _direction = direction;
 }
 public SQLParameter(string AName, SQLType AType, object AValue, SQLDirection ADirection, string AMarker, string ALiteral) : base()
 {
     FName      = AName;
     FType      = AType;
     FValue     = AValue;
     FDirection = ADirection;
     FMarker    = AMarker;
     FLiteral   = ALiteral;
 }
Exemple #4
0
 public SQLParameter(string name, SQLType type, object tempValue, SQLDirection direction, string marker, string literal) : base()
 {
     _name      = name;
     _type      = type;
     _value     = tempValue;
     _direction = direction;
     _marker    = marker;
     _literal   = literal;
 }