Hi,
I used to work with Access as Backend and Frontend.
It work well for a few months but it got to slow, so
I decided to change the backend.
I downloaded MySql Win32 and MyODBC.
Installation was successfull.
My question is:
I have got two tables: "komm" and "best"
The pk of komm is id_komm and the pk of best is id_best.
There is also a field in best called id_komm. And this field
should be linked with id_komm from komm.
So i tried the following SQL-Sting to restrict deleting a recordset
from komm if there a linked recordsets in best:
CREATE TABLE komm (
id_komm INT NOT NULL PRIMARY KEY AUTO_INCREMENT
REFERENCES best (id_komm) ON DELETE RESTRICT,
......
...
This doesn't work !
MySql isn't restricting me from deleting recordsets !
What did I do wrong ?
tnx, Robert