Initializes a new instance of an AdsCommand object.
public AdsCommand();
Remarks
This is the default constructor. All property values are initialized to their default values. When using this constructor, it is necessary to assign an AdsConnection object to the AdsCommand.Connection property prior to using the command.
Example
// create a connection object
AdsConnection conn = new AdsConnection( "data source = c:\\data;" );
AdsCommand cmd;
// open the connection
conn.Open();
// create a new command object
cmd = new AdsCommand();
// assign the connection
cmd.Connection = conn;
// specify a query
cmd.CommandText = "select now() from system.iota";
// execute the query
Console.WriteLine( cmd.ExecuteScalar().ToString() );
// close the connection.
conn.Close();
See Also