NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

DBCommand SchemaChanged Event

Occurs when the DataSet schema has been changed to match the schema change of the data source.

The following declaration shows the syntax for a method that handles the SchemaChanged event.

[Visual Basic]
Private Sub DBCommandName_SchemaChanged( _
   ByVal sender As Object, _
   ByVal e As SchemaChangedEventArgs _
)
[C#]
private void DBCommandName_SchemaChanged(
   object sender,
   SchemaChangedEventArgs e
);
[C++]
private: void DBCommandName_SchemaChanged(
   Object* sender,
   SchemaChangedEventArgs* e
);
[JScript]
private DBCommandName_SchemaChanged(
   sender : Object,
   e : SchemaChangedEventArgs
);

Parameters

sender
The source of the event.
e
A SchemaChangedEventArgs that contains the event data. The following SchemaChangedEventArgs properties provide information specific to this event.
Property Description
SchemaType
[To be supplied.]
Source
[To be supplied.]

See Also

DBCommand Class | DBCommand MembersTopic | System.Data.Internal Namespace