How I can use mysql.exe in VB.NET

582 Views Asked by At

I want to restore an simple .SQL file,

The MySQL Server is Protected with password and is an remote Host

1

There are 1 best solutions below

0
On BEST ANSWER

I solved my Problem using this:

Dim proc As New Process
            proc.StartInfo.FileName = "cmd.exe"
            proc.StartInfo.UseShellExecute = False
            'Don’t show command prompt window.
            proc.StartInfo.CreateNoWindow = True
            proc.StartInfo.Arguments = "/K bin\mysql.exe -h " & db_host_int & " -u " & db_user_int & " -p" & db_password_int & " " & db_database_int & " < bin/DB_SCHEMA.sql"
            proc.Start()
            'Time in milliseconds, can change value to wait.
            proc.WaitForExit(1000)
            proc.Close()