I'm trying to insert a value into an Access table. The field is defined as Date/Time in the Access table.
I have not had a problem Inserting String/Text or numeric values - just the Date/Time value.
Here's what I have tried:
I can also Update any of the other three fields in the table but the #29-Feb-76# does not work.
Any help will be appreciated.
I have not had a problem Inserting String/Text or numeric values - just the Date/Time value.
Here's what I have tried:
Code:
INSERT INTO Receipt (Folio, Amount, Code, DateTime)
VALUES ('44444',555.50,
'TUI4',#29-Feb-76#)
I can also Update any of the other three fields in the table but the #29-Feb-76# does not work.
Any help will be appreciated.