mdbs99 / james

James is a collection of object-oriented Pascal primitives for Lazarus and Delphi
MIT License
53 stars 20 forks source link

TDataParam: add New overload methods for each type #93

Closed mdbs99 closed 5 years ago

mdbs99 commented 6 years ago

The idea is like that:

TDataParams.New
  .Add(TDataParam.NewInteger('p1', 10))
  .Add(TDataParam.NewString('p2', 'foo'))
mdbs99 commented 5 years ago

All New methods will be refactored to use Ref methods—more here.