2016-07-24 58 views
0

我想寫的下面這行代碼在我的程序:語法問題塔米爾SharpSsh RunCommand

xxxx.RunCommand("echo "select count(*) from TABLE_NAME;"|sqlplus DB Connection"); 

現在我明白RunCommand的語法RunCommand(「UNIX命令」);

但在我的程序中,我需要使用多個「」。請建議這裏的代碼是什麼。對不起,這個基本的問題。

回答

0

如果你的意思是轉義他們,你需要使用\"來代替。

xxxx.RunCommand("echo \"select count(*) from TABLE_NAME;\"|sqlplus DB Connection"); 

或者使用逐字串字符串將其加倍。

xxxx.RunCommand(@"echo ""select count(*) from TABLE_NAME;""|sqlplus DB Connection"); 
+0

謝謝,它的工作就像一個魅力 –