Click or drag to resize
AbstractDatabaseAbstracterParse 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.Engine.Db
Assembly: Activsoft.Engine (in Activsoft.Engine.dll) Version: 6.0.0.0
Syntax
public SqlStatement[] Parse(
	string requests,
	string prefix,
	int first
)

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: SqlStatement
a list of SqlStatement ready to be executed

Implements

IDatabaseAbstracterParse(String, String, Int32)
See Also