| ConfigParse Method (String, String, Int32) |
Parses a list of SqlStatement from a semicolon separated string, a prefix and a starting number for the numeric parameters (
see the format description).
It uses the default formatters and transformers.
Namespace: Activsoft.EngineAssembly: Activsoft.Engine (in Activsoft.Engine.dll) Version: 6.0.0.0
Syntaxpublic SqlStatement[] Parse(
string requests,
string prefix,
int first
)
Public Function Parse (
requests As String,
prefix As String,
first As Integer
) As SqlStatement()
public:
virtual array<SqlStatement^>^ Parse(
String^ requests,
String^ prefix,
int first
) sealed
abstract Parse :
requests : string *
prefix : string *
first : int -> SqlStatement[]
override Parse :
requests : string *
prefix : string *
first : int -> SqlStatement[] Parameters
- requests
- Type: SystemString
semicolon separated SQL request list - prefix
- Type: SystemString
prefix to use for the numeric parameters - first
- Type: SystemInt32
first number for the numeric parameters; [prefix][first] will be used for %2, [prefix][first+1] for %3, etc.
Return Value
Type:
SqlStatementa list of SqlStatement ready to be executed
Implements
IDatabaseAbstracterParse(String, String, Int32)
See Also