Click or drag to resize

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)
Syntax
protected virtual List<string> SplitSqlString(
	string sqlToExecute
)

Parameters

sqlToExecute
Type: SystemString
string to split

Return Value

Type: ListString
List with all separate queries in sqlToExecute
Remarks
The default variant splits on ';' and includes the ';' with the query it suffixes.
See Also