本文介绍了MySQL和ProcessStart的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



当前我正在尝试使用以下代码运行exe

Hi,

Currently I'm trying to run an exe with the following code

字符串 sCommand == @" -uroot -pPWDDBNAME < c :\ script.sql&";
System.Diagnostics.ProcessStartInfo oInfo 系统=. 系统. Diagnostics.ProcessStartInfo("mysql",sCommand);
处理 p = > 系统 .Diagnostics.Process.Start(oInfo);
string sCommand = @"-uroot -pPWD DBNAME < c:\script.sql";   
System.Diagnostics.ProcessStartInfo oInfo = new System.Diagnostics.ProcessStartInfo("mysql",sCommand); 
Process p = System.Diagnostics.Process.Start(oInfo); 

推荐答案

如果数据库URI用引号引起来,代码是否起作用,如:

Does the code work if the database URI is placed in quotes, as in:

string sCommand = @"-uroot -pPWD DBNAME < \"c:\script.sql\"";


这篇关于MySQL和ProcessStart的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 02:28