Returns then corresponding database parameter name for the supplied token

Namespace:  DbNetLink.Data
Assembly:  DbNetLink.DbNetData (in DbNetLink.DbNetData.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public string ParameterName(
	string Key
)
Visual Basic (Declaration)
Public Function ParameterName ( _
	Key As String _
) As String
Visual C++
public:
String^ ParameterName(
	String^ Key
)

Parameters

Key
Type: System..::.String

The unformatted name of the parameter e.g. "userid"

Return Value

The qualified parameter name. For example for an MS SQL Server connection the key "userid" would be returned as "@userid".

See Also