J
Jacob Havkrog
Hi.
I've come to beleive that MS Access supports the use of national characters
like Danish letters ÆØÅ, ie letters outside the A-Z range.
If you just enclose tabel and field names in square bracket, things are
fine.
OK, until you need to create a constraint, it seems. I try this:
ALTER TABLE [Kørsler]
ADD CONSTRAINT RunIDRef
FOREIGN KEY ([KørselsID])
REFERENCES Posteringer ([KørselsID])
ON DELETE CASCADE ON UPDATE CASCADE
and get the error message, that "KørselsID" is an illegal name for a
constraint definition.
It's a little late for Access to tell me this, because this database is
already in use many places....
What can I do to create this constraint? Thanks for any help!
Jacob
I've come to beleive that MS Access supports the use of national characters
like Danish letters ÆØÅ, ie letters outside the A-Z range.
If you just enclose tabel and field names in square bracket, things are
fine.
OK, until you need to create a constraint, it seems. I try this:
ALTER TABLE [Kørsler]
ADD CONSTRAINT RunIDRef
FOREIGN KEY ([KørselsID])
REFERENCES Posteringer ([KørselsID])
ON DELETE CASCADE ON UPDATE CASCADE
and get the error message, that "KørselsID" is an illegal name for a
constraint definition.
It's a little late for Access to tell me this, because this database is
already in use many places....
What can I do to create this constraint? Thanks for any help!
Jacob