Clone Method (MySqlCommand)
Creates a new object that is a copy of the current
MySqlCommand instance.
Return Value
A new
MySqlCommand object in which all property values are the same as the original.
This example shows how to clone a
MySqlCommand . To make sure all the properties are inherited, one of them (CommandText) is written to the console.
public void CloneACommand()
{
MySqlCommand myCommand = new MySqlCommand("SELECT * FROM Test.Dept");
MySqlCommand myCommand2 = (MySqlCommand)myCommand.Clone();
Console.WriteLine(myCommand2.CommandText);
}
Public Sub CloneACommand()
Dim myCommand As New MySqlCommand("SELECT * FROM Test.Dept")
Dim myCommand2 As MySqlCommand = CType(myCommand.Clone(), MySqlCommand)
Console.WriteLine(myCommand2.CommandText)
End Sub