I have problems with updating access database from asp.net 2.0 application.
I use this code:
SQL = "UPDATE Tabela Set Polje1=" & CInt(Text) & " WHERE ID=" &
CLng(Session("I D"))
cmd = New OleDbCommand(SQ L, odbConn)
cmd.ExecuteNonQ uery()
No compile error, no run-time error but database is not updated!! How to
update record in access database?
I use this code:
SQL = "UPDATE Tabela Set Polje1=" & CInt(Text) & " WHERE ID=" &
CLng(Session("I D"))
cmd = New OleDbCommand(SQ L, odbConn)
cmd.ExecuteNonQ uery()
No compile error, no run-time error but database is not updated!! How to
update record in access database?
Comment