B
bindurajeesh
I have the following code piece:
strsql2 = "delete los_service.* from los_service where member_number = " &
intmembernumber & " and los_beg_time = #" & rs1!los_beg_time & _
"# and los_end_time = #" & rs1!los_end_time & "#
and service = '" & rs1!service & "' and los_service_date = #" &
rs1!los_service_date & "#"
DoCmd.RunSQL strsql2
when i run the procedure and then query the los_service table the record is
still in the table. Why isnt the delete query working?
strsql2 = "delete los_service.* from los_service where member_number = " &
intmembernumber & " and los_beg_time = #" & rs1!los_beg_time & _
"# and los_end_time = #" & rs1!los_end_time & "#
and service = '" & rs1!service & "' and los_service_date = #" &
rs1!los_service_date & "#"
DoCmd.RunSQL strsql2
when i run the procedure and then query the los_service table the record is
still in the table. Why isnt the delete query working?