Live Chat Icon For mobile
Live Chat Icon

What is the significance of CommandBehavior.CloseConnection

Platform: ASP.NET| Category: ADO.NET

To avoid having to explicitly close the connection associated with the command used to create either a SqlDataReader or and OleDbDataReader, pass the CommandBehavior.CloseConnection argument to the ExecuteReader method of the Connection. i.e VB.NET

dr= cmd.ExecuteReader(CommandBehavior.CloseConnection)

C#

dr= cmd.ExecuteReader(CommandBehavior.CloseConnection);

The associated connection will be closed automatically when the Close method of the Datareader is called. This makes it all the more important to always remember to call Close on your datareaders.

Share with

Related FAQs

Couldn't find the FAQs you're looking for?

Please submit your question and answer.