![]() |
Sergey Kornilov admin 2/14/2014 |
Something like this will work: CustomQuery("update Userstbl set PasswordField='xxxxx' where UsernameField='" & Session("UserID") & "'")
|
G
|
gonzalosb 3/4/2014 |
Hi Sergey,
sql = "Update Records set AddedToAchive='1'
where ID=' & record(ID)'"
Microsoft Office Access Database Engine error'80040e07'
|
![]() |
Sergey Kornilov admin 3/4/2014 |
record(ID) is incorrect, record("ID") is correct. |
G
|
gonzalosb 3/7/2014 |
now i have this error
|
![]() |
Sergey Kornilov admin 3/7/2014 |
Print your SQL query on the page instead of executing it to see if there are any errors in it. |
G
|
gonzalosb 3/11/2014 |
ok, found the code that works for me.
|