若您程序中執行的 SQL statement 或 Stored Procedure
SELECT Count(*) FROM 員工數據表
或只會回傳符合條件的「第一筆」record 的「第一個」column 其值
SELECT 電子信箱 FROM 員工數據表 WHERE 姓名=
我們即可用 Command 對象的 ExecuteScalar 方法 (ADO
但由於 ExecuteScalar 方法回傳的必為 Object 類型
string theMail = (string)cmd
因此使用 ExecuteScalar 方法時
此外
string strSql =
此時
SqlConnection conn = new SqlConnection(strConnString);
SqlCommand cmd = new SqlCommand(strSqlStr
try
{
conn
if (conn
{
// 返回最新的 Identity 流水號碼
intNewestSerialNum = Convert
}
}
catch (SqlException ex)
{}
From:http://tw.wingwit.com/Article/program/net/201311/13163.html