tags:

views:

26

answers:

1

can i perform cascaded delete using foreign key constraints in MySql 3.0 ?

+1  A: 

No, as the docs mention,

ON DELETE CASCADE is supported starting from MySQL 3.23.50

so your 3.0 is just too old for it.

Alex Martelli