我有一部分代碼,它返回非不同值。記錄集給出了不同的值
有無論如何,我可以使用不同的功能來獲得不同的值?
代碼:
public static Recordset queryTestDirector(string projectName, string query)
{
Recordset result = null;
/*Connect to Test director and pull down all the currently listed QC numbers*/
TDConnection tdConnection;
tdConnection = new TDAPIOLELib.TDConnection();
tdConnection.InitConnection("http://***/qcbin/", "ABC", "");
tdConnection.ConnectProject(projectName, "qc_manager", "");
Command cmd;
cmd = tdConnection.Command as Command;
String qcIDQuery = query;
cmd.CommandText = qcIDQuery;
result = cmd.Execute() as Recordset;
tdConnection.Disconnect();
return result;
}
是返回結果的問題給出了值: A,A,A,A,B,C,d
我想只有A,B,C,d
請建議。
你正在使用什麼'query'?你不能讓它「選擇不同」嗎? – McGarnagle
我嘗試使用選擇不同,但它給了我錯誤,因爲「無法運行查詢」 – Ashutosh
您需要在這裏發佈您的查詢 – Divi