asp.net.ph

IDataAdapter.MissingMappingAction Property

System.Data Namespace   IDataAdapter Class


Sets or retrieves the action to take when incoming data does not have a matching table or column.

Syntax


Script IDataAdapter.MissingMappingAction [ = enumValue ]

Property Value


enumValue One of the MissingMappingAction values.

The property is read/write with a default value of Passthrough.

Exceptions


Exception Type Condition
ArgumentException Occurs when the value set is not one of the MissingMappingAction values.

Remarks

The MissingMappingAction property specifies or determines whether unmapped source tables or columns are passed with their source names in order to be filtered, or to raise an error.

The TableMappings property provides the master mapping between the returned records and the DataSet.

Example

The following example initializes a derived class, an SqlDataAdapter, and sets some of its properties.

SqlDataAdapter myAdapter = new SqlDataAdapter ( );
myAdapter.SelectCommand.CommandText = "SELECT * FROM pubs_Titles";
myAdapter.SelectCommand.Connection = new SqlConnection (
   "server=localhost; trusted_connection=yes; database=pubs" );
myAdapter.MissingMappingAction = MissingMappingAction.Error;
myAdapter.MissingSchemaAction = MissingSchemaAction.Error;
  C# VB

See Also

IDataAdapter Members   MissingSchemaAction Skip Navigation Links




Home
Suggested Reading


Previous page Back to top Next page

© 2000-2010 Rey Nuñez All rights reserved.

If you have any question, comment or suggestion
about this site, please send us a note

You can help support asp.net.ph