Ejemplo n.º 1
0
 public DBParam(string Name, object Value, DbType MyType, int Size)
 {
     this.Name   = MyUtilities.Preprocess(Name);
     this.Value  = Value;
     this.MyType = MyType;
     this.Size   = Size;
 }
Ejemplo n.º 2
0
        // Methods

        public DBParam(string Name, object Value)
        {
            this.Name  = MyUtilities.Preprocess(Name);
            this.Value = Value;
        }