First, I run the following command "mysqldump.exe --user = root --password = root accounts> accounts.sql" in the C:> path to back up, but it shows the error message "mysqldump is not recognized command".
Then I changed the path on the command line using the cd command to the location "C: \ Program Files \ MySQL \ MySQL Server 5.0 \ bin>"
Now I run the following command.
C: \ Program Files \ MySQL \ MySQL Server 5.0 \ bin> mysqldump.exe --user = root --password = root accounts> accounts.sql
It works successfully, but how can I achieve this work with VB.NET or C # .NET.
source
share