Provides a ULParameter object for supplying parameters to ULCommand objects.
Visual Basic
Public Function CreateParameter() As ULParameter
C#
public ULParameter CreateParameter();
A new parameter, as a ULParameter object.
Some SQL statements can take parameters, indicated in the text of a statement by a question mark (?). The CreateParameter method provides a ULParameter object. You can set properties on the ULParameter to specify the value for the parameter.
This is the strongly-typed version of System.Data.IDbCommand.CreateParameter.