DB2SpecificCreatorCreateLikeParameter Method  | 
 
            Creates a valid Parameter for the pattern in a LIKE statement. This is a special case, because it shouldn't rely on the type of the
            field the LIKE statement is used with but should be the unicode varchar type.
            
 
    Namespace: 
   SD.LLBLGen.Pro.DQE.DB2
    Assembly:
   SD.LLBLGen.Pro.DQE.DB2 (in SD.LLBLGen.Pro.DQE.DB2.dll) Version: 5.5.0.0 (5.5.18.1019)
Syntaxpublic override DbParameter CreateLikeParameter(
	string pattern,
	string targetFieldDbType
)
Public Overrides Function CreateLikeParameter ( 
	pattern As String,
	targetFieldDbType As String
) As DbParameter
Parameters
- pattern
 - Type: SystemString
The pattern to be passed as the value for the parameter. Is used to determine length of the parameter. - targetFieldDbType
 - Type: SystemString
Type of the target field db, in provider specific enum string format (e.g. "Int" for SqlDbType.Int) 
Return Value
Type: 
DbParameter
            Valid parameter for usage with the target database.
            
Implements
IDbSpecificCreatorCreateLikeParameter(String, String)
See Also