Issues with OledbDataAdapter.Update()

A

amessimon

Hi

I have a problem with an insert statment using the update() method of the
OledbDataAdapter.
I'm getting the error 'Update requires a valid InsertCommand when passed
DataRow collection with new rows. '
Heres a condensed version of the page.

<%@ Import Namespace="system.Data" %>
<%@ Import Namespace="system.Data.Oledb" %>
<script language="vb" runat="server">
Sub Page_Load(sender As Object, e As EventArgs)
Dim objDataSet As New DataSet()
Dim objDataAdapter As New OledbDataAdapter()
Dim strConnection As String =
ConfigurationSettings.AppSettings("ConnectionString")
Dim strSQL As String = "SELECT [ppcTerm], [pageName], [contentTitle],
[contentBody] FROM tbl_content"
Dim objConnection As New oleDbConnection(strConnection)
Dim objCommand As New oleDbCommand(strSQL, objConnection)
objDataAdapter.SelectCommand = objCommand
objDataAdapter.Fill(objDataSet)
Dim objNewRow As DataRow = objDataSet.Tables(0).NewRow
objNewRow(0) = "value1"
objNewRow(1) = "value2"
objNewRow(2) = "value3"
objNewRow(3) = "value4"
objDataSet.Tables(0).Rows.Add(objNewRow)
objDataAdapter.Update(objDataSet)
End sub
</script>

I'm aware there are other ways of doing this like using an INSERT statement,
but i'd like to know why this isnt working.

Thanks for any help in advance.

Simon Ames
 
N

Natty Gur

Hi,

Although I'm against using datasets (ORM much better), you need to set
objDataAdapter.InsertCommand exectly as you set SelectCommand. Otherwise
the adapter won't know which command to run against changed values in
dataset.

HTH

Natty Gur[MVP]

blog : http://weblogs.asp.net/ngur
Mobile: +972-(0)58-888377
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,578
Members
45,052
Latest member
LucyCarper

Latest Threads

Top