Creates a new instance of a DALParameter object.
Creates a new instance of the DALParameter class with the parameter name, the ParameterTypes, and the ParameterDirections of the parameter initialized.
DALParameter CreateParameter(string,ParameterTypes,ParameterDirections);
Creates a new instance of the DALParameter class with the parameter name, the ParameterTypes, the ParameterDirections, the size, and the value of the parameter initialized.
DALParameter CreateParameter(string,ParameterTypes,ParameterDirections,int,object);
Creates a new instance of the DALParameter class with the parameter name, the ParameterTypes, the ParameterDirections, and the value of the parameter initialized.
DALParameter CreateParameter(string,ParameterTypes,ParameterDirections,object);