Command Builder:

A command builder is an ADO.NET object that lets you create command objects for a data adapter's insert, update, delete statement is based on the adapter's select statement. that way, you don't have to worry about coding these statements and creating these command yourself.

create a SqlCommandBuilder: There are two way to create SqlCommandBuilder in ADO.NET. That are:

Properties of command builder:

Code that creates a SqlCommandBuilder Object:

Imports System.Data.SqlClient
Module
Module1
Sub Main()
Dim da As New SqlDataAdapter
Dim cmdb As New SqlCommandBuilder()
cmdb.da = "Table_name"
End Sub

End
Module

Description:

Note: