OdbcDataAdapter Constructor (OdbcCommand^)

 

Initializes a new instance of the OdbcDataAdapter class with the specified SQL SELECT statement.

Namespace:   System.Data.Odbc
Assembly:  System.Data (in System.Data.dll)

public:
OdbcDataAdapter(
	OdbcCommand^ selectCommand
)

Parameters

selectCommand
Type: System.Data.Odbc::OdbcCommand^

An OdbcCommand that is an SQL SELECT statement or stored procedure, and is set as the SelectCommand property of the OdbcDataAdapter.

This implementation of the OdbcDataAdapter constructor sets the SelectCommand property to the value specified in the selectCommand parameter.

When you create an instance of OdbcDataAdapter, the following write-only and read-only properties are set to their default values, as shown in the table.

Properties

Initial value

MissingMappingAction

MissingMappingAction.Passthrough

MissingSchemaAction

MissingSchemaAction.Add

You can change the value of any of these properties through a separate call to the property.

The following example creates an OdbcDataAdapter and sets some of its properties.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show: