Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のコマンド テキスト (SQL ステートメント) を実行したいのですが、どのコマンドを使用する必要がありますか?
command.CommandText="select Fname from table_name where Lname='abc'"
ExecutScalar または ExecuteReader コマンドを使用する必要があります。確認してください。
どちらでも動作します。それは期待される結果に依存します。
単一の値のみを返す場合は、ExecuteScalar優先されます。
ExecuteScalar
それ以外の場合はExecuteReader、DataTable
ExecuteReader
DataTable