This is the code i m using for updating table,which the user is entering through textbox in vb form
Con.Execute "update Details set NAME='" & txtName.Text & "' and DT_OF_BTH='" & txtDOB.Text & "' and DT_OF_JOING='" & txtDOJ.Text & "' and SALARY_ACC='" & txtAccountNo.Text & "' and REMBSMNT_ACC='" & txtRmbr.Text & "' and PHONE_NO='" & txtPhno.Text & "' where PS_No=" & Trim(txtPSNo.Text) & ""
This is the database i created,at the time of updastion it is givn err
PS_No number(long int)
NAME text
DT_OF_BTH date/time short date
DT_OF_JOING date/time short date
SALARY_ACC number (double,fixed)
REMBSMNT_ACC number (double,fixed)
PHONE_NO number (double,general)