Posting changes back to DB

How do I post changes in the datatable back to the DB?

Const Con_string As String = "Data Source=(LOCAL);Initial Catalog=MyDB;Integrated Security=True"
Const Command_String As String = "select * from Samples"

Dim myDataAdapter As New SqlDataAdapter(Command_String, Conn_string)
Dim myDataTable As New DataTable
MyDataAdapter.Fill(MyDataTable)

'modify data table

'what command do I use to send the modified data back to MyDB
[515 byte] By [mccreatl] at [2007-11-19 17:08:24]
# 1 Re: Posting changes back to DB
use SqlCommandBuilder befor calling Update method of the adapter,or add suitable Insert,Update,Delete Command to the Adaptor and call the Updtate method.
mehdi62b at 2007-11-10 3:30:32 >