SqlServerSpecificCreatorCreateParameter Method (String, Int32, ParameterDirection, Boolean, Byte, Byte, Object) | 
 
            Creates a new, filled parameter.
            
 
    Namespace: 
   SD.LLBLGen.Pro.DQE.SqlServer
    Assembly:
   SD.LLBLGen.Pro.DQE.SqlServer (in SD.LLBLGen.Pro.DQE.SqlServer.dll) Version: 5.5.0.0 (5.5.18.1019)
Syntaxpublic override DbParameter CreateParameter(
	string parameterType,
	int size,
	ParameterDirection direction,
	bool isNullable,
	byte precision,
	byte scale,
	Object value
)
Public Overrides 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: 
DbParameterImplements
IDbSpecificCreatorCreateParameter(String, Int32, ParameterDirection, Boolean, Byte, Byte, Object)
See Also