我正在使用ExecuteScalar
一列:如何使用ExecuteScalar檢索多個列?
cmd.commandtext = "select rodeuser from customer_db_map";
string rodecustomer = cmd.executescalar;
但我需要得到一個以上的塔,例如:
cmd.commandtext = "select rodeuser,username,password from customer_db_map";
我需要一個字符串中的每一列:
string rodecustomer = cmd.ExecuteScalar();
string username= cmd.ExecuteScalar();
string password = cmd.ExecuteScalar();
但這是不可能的。這是如何實現的?
這不是'ExecuteScalar()'的用途。使用'ExecuteReader()'並從數據讀取器讀取它們。 – BoltClock 2011-06-09 11:00:39