I have a problem with Insert into SQL statement. When I use the below SQL to insert a Hijri date , the date will be stored in the table as Gregorian date.
How can I specify the date that I am inserting into the table is Hijri date not Gregorian date.
How can I specify the date that I am inserting into the table is Hijri date not Gregorian date.
Code:
dbsCurrent.Execute "INSERT INTO Rent ([RentDueDate]) VALUES" & "(#" & [Text_RentDueDate] & "#)"
Comment