Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
以指定参数名、数据类型和长度初始化 ULParameter 对象。
Public Sub New( ByVal parameterName As String, ByVal dbType As ULDbType, ByVal size As Integer, ByVal sourceColumn As String )
public ULParameter( string parameterName, ULDbType dbType, int size, string sourceColumn )
parameterName 参数的名称。对于未命名参数,请使用一个空字符串 ("") 或空值引用(在 Visual Basic 中为 Nothing)作为其值。在 UltraLite.NET 中,参数名不由 ULCommand 来使用。
dbType iAnywhere.Data.UltraLite.ULDbType 值之一。
size 参数的长度。
sourceColumn 要映射的源列的名称。
不建议使用此构造函数;提供它的目的是与其它数据提供程序兼容。
在 UltraLite.NET 中,参数只能被用作 IN 参数,并忽略所有映射信息。只有 ULParameter.Value 是非常重要的。