DBSchemaFindStoredProcedureByName Method (String, Boolean) | 
 
            Finds the stored procedure with the name specified.
            
 
    Namespace: 
   SD.LLBLGen.Pro.DBDriverCore
    Assembly:
   SD.LLBLGen.Pro.DBDriverCore (in SD.LLBLGen.Pro.DBDriverCore.dll) Version: 5.12.0.0 (5.12.0)
Syntaxpublic DBStoredProcedure FindStoredProcedureByName(
	string storedProcedureName,
	bool caseInsensitiveComparison
)
Public Function FindStoredProcedureByName ( 
	storedProcedureName As String,
	caseInsensitiveComparison As Boolean
) As DBStoredProcedure
Parameters
- storedProcedureName
 - Type: SystemString
Name of the stored procedure. - caseInsensitiveComparison
 - Type: SystemBoolean
if set to true it will perform a case insensitive comparison. 
Return Value
Type: 
DBStoredProcedure
            stored procedure with the name specified or null if not found
            
See Also