DBDriverBaseSplitSqlString Method  | 
 
            Splits the string specified on the default separator string for this database. Assumes the string has been stripped from comments.  
            
 
    Namespace: 
   SD.LLBLGen.Pro.DBDriverCore
    Assembly:
   SD.LLBLGen.Pro.DBDriverCore (in SD.LLBLGen.Pro.DBDriverCore.dll) Version: 5.8.0.0 (5.8.21.0208)
Syntaxprotected virtual List<string> SplitSqlString(
	string sqlToExecute
)
Protected Overridable Function SplitSqlString ( 
	sqlToExecute As String
) As List(Of String)
Parameters
- sqlToExecute
 - Type: SystemString
string to split 
Return Value
Type: 
ListStringList with all separate queries in sqlToExecute
RemarksThe default variant splits on ';' and includes the ';' with the query it suffixes.
See Also