回答
爲什麼要將數據集用於單個靜態值。如果您使用的是SQL讀者使用的ExecuteScalar功能
例子:
function GetIntValue()
{
SqlConnection con = new SqlConnection(ConfigurationSettings.AppSettings["con"]);
con.Open();
SqlCommand cmdCount = new SqlCommand("SELECT COUNT(*) FROM Employees",con);
int numberOfEmployees = (int)cmdCount.ExecuteScalar();
Response.Write("Here are the " + numberOfEmployees.ToString() + " employees: <br><br>");
SqlCommand cmd = new SqlCommand("SELECT * FROM Employees",con);
SqlDataReader dr = cmd.ExecuteReader();
while(dr.Read()) {
Response.Write(dr["LastName"] + "<br>");
}
con.Close();
}
對不起,我不明白答案。 我做了一個函數返回我1行1點的值在那裏,我想這樣做someing像 textbox1.text =()的函數。的GetData 我該怎麼辦呢? – ShmuelCohen 2013-03-01 17:59:34
請參閱此示例http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlcommand.executescalar.aspx – SP007 2013-03-01 18:00:54
@ user2120874而不是將函數讀入DataSet中,請使用ExecuteScalar()作爲引用上面將函數結果直接讀入一個變量。 – 2013-03-01 18:01:15
- 1. 從C++中讀取int值向量
- 2. 從數據集中讀取
- 3. 如何從文本文件讀取int數組,在c + +中?
- 4. 在c#中讀取sas數據集
- 5. 在C#中讀取數據集#
- 6. 如何讀取plist數據並從中獲取int?
- 7. 從mysql讀取int的C#
- 8. C:從void *讀取int ** *
- 9. 如何從OutputStreamWriter讀取int?
- 10. 從數據集的數據表中讀取值
- 11. 如何從數據行讀取值。 OleDB
- 12. 從數據庫表中讀取集合
- 13. 讀取數據從.txt(C++)
- 14. 從C#讀取Excel數據#
- 15. 如何在Objective-C中從HTML讀取JSON-LD數據?
- 16. 如何在C#中從POST數據讀取文件
- 17. 如何在angularjs中讀取數據庫中的數據c#
- 18. 如何從C#中的文本文件讀取int []?
- 19. c# - 如何在從數據庫讀取時維護用戶控制中的值?
- 20. 從文件中讀取整數值c
- 21. 如何加速從oracle數據庫中讀取數據到pentaho數據集成?
- 22. 讀取數據集
- 23. Openpyxl - 如何從excel文件中的單元格讀取int值
- 24. 如何從javascript函數中讀取值?
- 25. iOS如何從數組中讀取值
- 26. 在javascript中讀取數據從數組中讀取數據
- 27. 如何從HTML片段文件集合中讀取數據?
- 28. 如何將數據從CSV讀取到集合中
- 29. 從數據集中讀取錯誤的值
- 30. 從數據庫獲取int類型c#
[C#ADO.NET的OleDbCommand - 的ExecuteScalar(http://csharp.net-informations.com/data-providers/csharp-oledbcommand -executescalar.htm) – 2013-03-01 17:52:53