VB.NET - commandType property of a SqlCommand object

Explain commandType property of a SqlCommand object.

CommandType property can set to Text, StoredProcedure or TableDirect.

1. Text : This directs the command object to execute the SQL string.
2. StoredProcedure : This indicates that command object has to access stored procedure.
3. TableDirect : This indicates that command object has to retrieve contents of the table.
VB.NET - typed and untyped DataSet objects
VB.NET - typed and untyped DataSet objects - An untyped dataset has no corresponding built-in schema......
VB.NET DataView
VB.NET - Briefly describe DataView - The data represented in a DataView object can be filtered and sorted......
VB.NET XmlDataDocument
VB.NET - Define an XmlDataDocument - An XmlDataDocument is an in-memory representation of data in a hierarchical XML format ......
Post your comment