I have done a lot of mySQL stuff, but am new to access' jet SQL. There is something wrong with the following query, resulting in an "UPDATE syntax eror" statement... But it seems right (have I used access' date pounds wrong?)
update cal_dates set title = 'event 7', desc = 'Standard desc', date = #07/07/2007#, max_attend = 77 where c_id = 5
cal_dates is a table with additional fields not altered by this update query. Title, desc are strings, date is a date/time, max_attend and c_id are numbers.
I am working in php through odbc, if that has any impact on this. Thanks for your time!
update cal_dates set title = 'event 7', desc = 'Standard desc', date = #07/07/2007#, max_attend = 77 where c_id = 5
cal_dates is a table with additional fields not altered by this update query. Title, desc are strings, date is a date/time, max_attend and c_id are numbers.
I am working in php through odbc, if that has any impact on this. Thanks for your time!