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.10.0.0 (5.10.0)
Syntax protected 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
Remarks The default variant splits on ';' and includes the ';' with the query it suffixes.
See Also