Public methods:
MqlParam          params[];
Public access to the params array;
CMqlParams*Â Â Â Â Â Â Set(T data,ENUM_DATATYPE type = TYPE_LONG);
This is the main method of setting the params. Methods can be chained to add multiple params at the same time. *see example script.
TÂ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Get(int index);//example
int param = Get<int>(0);
Returns the param data at index.Â
ENUM_DATATYPEÂ Â Â Â Type(int index)
Returns the type at index.
int              Total()
Returns the total number of params.
CMqlParams*Â Â Â Â Â Â Â Clear()
Clears the param array and sets Total() to 0