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

In This Topic
    IncludeLock Property
    In This Topic
    Determines whether to add LOCK TABLE clause before data insertion.
    Syntax
    'Declaration
     
    Public Property IncludeLock As Boolean
    public bool IncludeLock {get; set;}

    Property Value

    true, if LOCK TABLE clause should be added before data insertion; 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.IncludeLock = 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.IncludeLock = 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