CommandType property of a SQLCommand in ADO.NET

Describe CommandType property of a SQLCommand in ADO.NET.

A SQLCommand has CommandType property which can take Text, Storedprocedure or TableObject as value. If it is set to Text, the command executes SQL string that is set to CommandText property. When set to StoredProcedure, the command runs the stored procedure of the database. If the property is set to TableObject, the command returns the entire content of the table indicated by the CommandText property.
Dataview component of ADO.NET
Dataview component of ADO.NET - A DataView object allows you work with data of DataTable of DataSet object..
Ways to create connection in ADO.NET
Ways to create connection in ADO.NET - There are two ways to create connection supported by ADO.NET...
Access database at runtime using ADO.NET
Access database at runtime using ADO.NET - Steps to connect to database - Declare and initialize database connection object with appropriate connection string...
Post your comment