i am trying to update a field in my SQL table.
this is what i have so far, but it doesn't work properly.
strSQL = "UPDATE [dbo_tbl_transactions] SET [sdt_transaction_date] = #" & updated_trans_date & "#"" &_
"WHERE [int_member_id] = '" & int_id"
dbs.execute strSQL
updated_trans_date is a date
int_id is a number
anyhelp would be appreciated.
this is what i have so far, but it doesn't work properly.
strSQL = "UPDATE [dbo_tbl_transactions] SET [sdt_transaction_date] = #" & updated_trans_date & "#"" &_
"WHERE [int_member_id] = '" & int_id"
dbs.execute strSQL
updated_trans_date is a date
int_id is a number
anyhelp would be appreciated.