IProcedureReaderExecuteNonQuery Method

Alterian Email Manager 6.2.3 SDK Help File
Execute a non-query that take a collection of sql parameters

Namespace:  DMLibrary.SEV
Assembly:  DMLibrary (in DMLibrary.dll) Version: 1.0.6340.17420

Syntax
Dictionary<string, Object> ExecuteNonQuery(
	string connectionString,
	string storedProcedureName,
	IEnumerable<SqlParameter> parameters = null,
	int commandTimeout = 30
)

Parameters

connectionString
Type: SystemString
storedProcedureName
Type: SystemString
parameters (Optional)
Type: System.Collections.GenericIEnumerableSqlParameter
List of parameters. If none then use null
commandTimeout (Optional)
Type: SystemInt32
Defaulted to 30 seconds (as the SqlCommand default value)

Return Value

Type: DictionaryString, Object
Dictionary of objects from the SQL output/return parameters
See Also