good day guys.
i have this example code:
the problem now is when I check the record transdate, the data is 0000-00-00, so I guess it was not saved properly.
i tried the next code:
but now I get error "Incorrect date value: '2004' for column transdate' at row 1
Please help correct the code. thanks.
i have this example code:
Code:
dim str1 as string
str1="update table1 set transdate=" & Date
cn.execute str1
i tried the next code:
Code:
dim str1 as string
str1="update table1 set transdate=" & format(Date,"yyyy-mm-dd")
cn.execute str1
Please help correct the code. thanks.