Different execute methods of ADO.NET command object are Execute Scalar() , Execute reader() , ExecuteNonQuery().
ExecuteScalar() fetches only a single object.
ExecuteReader() fetches result set with multiple rows and loads to datareader.
ExecuteNonquery() executes sql statements for insert,update and delete.