dotConnect for MySQL Documentation
Devart.Data.MySql Namespace / MySqlDump Class / UseDelayedIns Property
Example

UseDelayedIns Property
Determines whether to use INSERT DELAYED statement syntax.
Syntax
'Declaration
 
Public Property UseDelayedIns As Boolean
 

Property Value

true, if INSERT DELAYED statement syntax is used; otherwise, false. The default value is false.
Remarks

Setting IncludeLock and UseDelayedIns properties to true leads to generating script that can not be executed right on the server due to MySQL limitations.

Example
This sample demonstrates dumping of tables.
public void DumpIt(MySqlConnection myConnection)
{
  myConnection.Open();
  MySqlDump mySqlDump = new MySqlDump();
  mySqlDump.Connection = myConnection;
  myConnection.Database = "Test";
  mySqlDump.UseDelayedIns = true;
  mySqlDump.Tables = "Emp;Dept";
  mySqlDump.Backup();
  StreamWriter stream = new StreamWriter("d:\\tmp\\mysqldump.dmp");
  stream.WriteLine(mySqlDump.DumpText);
  stream.Close();
  Console.WriteLine("Dumped.");
  myConnection.Close();
}
Public Sub DumpIt(ByVal myConnection As MySqlConnection)
  myConnection.Open()
  Dim mySqlDump As MySqlDump = New MySqlDump
  mySqlDump.Connection = myConnection
  mySqlDump.UseDelayedIns = True
  mySqlDump.Tables = "Emp;Dept"
  mySqlDump.Backup()
  Dim stream As StreamWriter = New StreamWriter("d:\tmp\mysqldump.dmp")
  stream.WriteLine(mySqlDump.DumpText)
  stream.Close()
  Console.WriteLine("Dumped.")
  myConnection.Close()
End Sub
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also