Hi, I am using mysql(odbc) with vb and ado on window xp. I would like to use mysqldump to backup my database. When I use mysqldump under Dos, it works fine. But when I shell out the command from vb program as follows,
cmdline="mysqldump --opt -u userid -pXXXXX database -c > /backupdir/backup.sql"
lProcID = Shell(cmdline, vbNormalFocus)
it dumps the whole database to the console not to the file.
I don't know why.
Another question: Can mysqldump to a floppy disk drive? Can it span several disks?
cmdline="mysqldump --opt -u userid -pXXXXX database -c > /backupdir/backup.sql"
lProcID = Shell(cmdline, vbNormalFocus)
it dumps the whole database to the console not to the file.
I don't know why.
Another question: Can mysqldump to a floppy disk drive? Can it span several disks?