[This is preliminary documentation and is subject to change.]

Adds an output parameter

Namespace:  OfficeClip.DBLayer
Assembly:  OfficeClip.DBLayer (in OfficeClip.DBLayer)
Version: 8.1.1.0

Syntax

C#
public SqlParameter AddOutputParameter(
	string parameterSP,
	SqlDbType sdt,
	int size,
	int precision,
	int scale
)
Visual Basic (Declaration)
Public Function AddOutputParameter ( _
	parameterSP As String, _
	sdt As SqlDbType, _
	size As Integer, _
	precision As Integer, _
	scale As Integer _
) As SqlParameter
Visual C++
public:
SqlParameter^ AddOutputParameter(
	String^ parameterSP, 
	SqlDbType sdt, 
	int size, 
	int precision, 
	int scale
)

Parameters

parameterSP
Type: System..::.String
The name of the stored procedure parameter
sdt
Type: System.Data..::.SqlDbType
The sql data type
size
Type: System..::.Int32
The size of the parameter
precision
Type: System..::.Int32
The precision of the parameter
scale
Type: System..::.Int32
The scale of the parameter

Return Value

The sql parameter object

See Also