Actualizar DataTable luego de borrar registro
Publicado por adolfo (55 intervenciones) el 25/02/2011 04:35:42
Hola amigos,
Tengo el siguiente codigo para borrar un registro:
Private Sub btnDelete_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnDelete.Click
' If there is data, delete the current row.
If m_DataTable.Rows.Count <> 0 Then
m_DataTable.Rows(m_rowPosition).Delete()
m_DA.Update(m_DataTable)
m_rowPosition = 0
Me.ShowCurrentRecord()
End If
End Sub
Pero cuando el programa pasa por la liniea " m_DA.Update(m_DataTable)", me da el siguiente error:
Dynamic SQL generation for the DeleteCommand is not supported against a SelectCommand that does not return any key column information.
Como le indico la columna a borrar?
Gracias.
Tengo el siguiente codigo para borrar un registro:
Private Sub btnDelete_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnDelete.Click
' If there is data, delete the current row.
If m_DataTable.Rows.Count <> 0 Then
m_DataTable.Rows(m_rowPosition).Delete()
m_DA.Update(m_DataTable)
m_rowPosition = 0
Me.ShowCurrentRecord()
End If
End Sub
Pero cuando el programa pasa por la liniea " m_DA.Update(m_DataTable)", me da el siguiente error:
Dynamic SQL generation for the DeleteCommand is not supported against a SelectCommand that does not return any key column information.
Como le indico la columna a borrar?
Gracias.
Valora esta pregunta


0