Zatim sam napravio Adapter cAdapter i objekat DataTable cTable
Podaci se lepo prikazuju u DataGridView kontroli, medjutim kada se prtisne Update dugme sa kodom ispod, nista se ne desi.
Ocekivao sam da se slog sa PrimKey = 9662 azurira sa novom siform kupca. Sve validizacije su ok.
U cemu gresim ....
Code:
Dim nPrimKey As Long = 9662
Dim strUpdate As String = "update otpremnice set kupsif = '" & Me.MyTextBox1.Text & "' where primkey = " & nPrimKey
cAdapter.UpdateCommand = New OleDbCommand(strUpdate, conMain)
cAdapter.Update(cTable)
Dim nPrimKey As Long = 9662
Dim strUpdate As String = "update otpremnice set kupsif = '" & Me.MyTextBox1.Text & "' where primkey = " & nPrimKey
cAdapter.UpdateCommand = New OleDbCommand(strUpdate, conMain)
cAdapter.Update(cTable)