Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.1 (Français) » SQL Anywhere Server - Programming » SQL Anywhere Data Access APIs » SQL Anywhere .NET 2.0 API reference » iAnywhere.Data.SQLAnywhere namespace (.NET 2.0) » SAParameter class » SAParameter constructors

 

SAParameter(String, Object) constructor

Initializes an SAParameter object with the specified parameter name and value. This constructor is not recommended; it is provided for compatibility with other data providers.

Syntax
Visual Basic

Public Sub New( _
   ByVal parameterName As String, _
   ByVal value As Object _
)
C#

public  SAParameter(
   string  parameterName,
   object value
);
Parameters
  • parameterName   The name of the parameter.

  • value   An Object that is the value of the parameter.

See also