IDbSpecificCreatorCreateParameter Method (String, Int32, ParameterDirection, Boolean, Byte, Byte, Object) |
Creates a new, filled parameter.
Namespace:
SD.LLBLGen.Pro.ORMSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.4.0.0 (5.4.0)
Syntax DbParameter CreateParameter(
string parameterType,
int size,
ParameterDirection direction,
bool isNullable,
byte precision,
byte scale,
Object value
)
Function CreateParameter (
parameterType As String,
size As Integer,
direction As ParameterDirection,
isNullable As Boolean,
precision As Byte,
scale As Byte,
value As Object
) As DbParameter
Parameters
- parameterType
- Type: SystemString
Type of the parameter. - size
- Type: SystemInt32
The size. - direction
- Type: System.DataParameterDirection
The direction. - isNullable
- Type: SystemBoolean
if set to true [is nullable]. - precision
- Type: SystemByte
The precision. - scale
- Type: SystemByte
The scale. - value
- Type: SystemObject
The value.
Return Value
Type:
DbParameterSee Also