I'm using MDMZinc to insert/update records into an MSAccess database, many headaches have been caused by dates.
Apparently the best method to avoid complication is to record date stamp as a numeric value, which i have done using the flash getTime() function (see below):-
Code:
var my_date:Date = new Date();
var quiznumberdate = my_date.getTime();
mdm.Database.MSAccess.runQuery("INSERT
Leave a comment: