skip to main content
Developing ADO.NET Applications : Microsoft .NET Public Objects/Interfaces Supported : OpenAccessParameter Object
 

OpenAccessParameter Object

The OpenAccessParameter object represents a parameter to an OpenAccessCommand. In addition to the public properties of the Parameter object, the OpenAccessParameter object supports the properties described in the following table.
For information about other properties and methods supported, refer to the .NET Client’s online help and the Microsoft .NET Framework SDK documentation.
 
Table 35: Properties of the OpenAccessParameter Object
Property
Description
ArrayBindStatus
Determines whether any values in an array of OpenAccessParameterStatus entries should be bound as null. The OpenAccessParameterStatus enumeration contains the entry Null.
OpenAccessDbType
Specifies the data types of the OpenAccess SDK server.
See Data Types for more information about OpenAccess SDK data types.
Value
Gets or sets the value of the parameter.
This property is specified as an array of values when array binding is enabled (see the ArrayBindCount property of the OpenAccessCommand Object). Each array's length must match the value of the ArrayBindCount property. When specifying the array's values for binary type columns, the data will actually be specified as byte[]. This is an array of arrays of bytes. The data provider anticipates a jagged array as such when using parameter array binding with parameters.