>> 3. For backwards parsing compatibility, am I better off just leaving the
>> action blank instead of explicitly writing "on delete no action"?
>
> Yes. Good plan.
Great, thanks for the definitive response :-)
Thanks,
Tom
BareFeetWare
--
Comparison of SQLite GUI tools:
http://www.barefeetwar
> foreign key ChildTable (ChildColumn1, ChildColumn2)
> references ParentTable (ParentColumn1, ParentColumn2)
> on delete no action
>
> I have a few questions:
>
> 1. What does SQLite do if the action is just left blank? Does it have the
> same affect as explicitly writing "no
Hi all,
I've been implementing foreign keys in some of my older tables, as detailed at:
http://www.sqlite.org/foreignkeys.html
usually like this:
foreign key ChildTable (ChildColumn1, ChildColumn2)
references ParentTable (ParentColumn1, ParentColumn2)
on delete cascade
w
3 matches
Mail list logo