0

我想执行以下命令文本(sql语句)我需要使用哪个命令?

command.CommandText="select Fname from table_name where Lname='abc'"

我需要使用 ExecutScalar 或 ExecuteReader 命令,请您确认一下。

4

1 回答 1

2

要么会工作。这取决于预期的结果。

如果您只返回一个值,ExecuteScalar将是首选。

否则,使用ExecuteReader或填写DataTable

于 2012-09-09T08:23:03.037 回答