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 SchemaChanging Event

Occurs when the DataSet schema is to be changed to match the schema change of the data source.

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

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

Parameters

sender
The source of the event.
e
A SchemaChangingEventArgs that contains the event data. The following SchemaChangingEventArgs 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