In our last episode we learned how to modify data and table definitions. This will come in handy as we look at building in referential integrity constraints into our database. To begin we will need the database definition resulting from last episode's changes. You can download it here »
A word on Storage Engines
Before we can begin we need to understand a little about MySQL Storage Engines. MySQL actually does only part of the job of parsing SQL, creating query plans, executing them and returning data sets. Where the data is stored and retrieved there is a Storage Engine at work. The original storage engine was MyISAM, based on the industry stalwart of ISAM …
[Read more]