|
MySQL is a light database system and lack of features that are needed for managing your complex databases. To express the 'has-a' relationship, you need a link to be established between 2 related tables. This link, called 'integrity constraint', is impossible in mysql. SQLmyAdmin is not any better for this, it cannot associate data of different tables together. It presents all the data in the brut form. Our system is an attempt to compensate all this. |
create table news
(
id_news int(11) auto_increment,
title varchar(255),
date_edition date
);
|
<— X |
create table news_article
(
id_news_article int(11) auto_increment,
id_news int(11),
html_text blob,
author varchar(255)
);
|
|
Our systems is built on top of the most widely used database software (for web databases) to compensate problems, to ameliorate it. It allows to associate data to other data, to make the articles really contained in a letter and to manage it. It imply that our navigation system allows to navigate from a letter to the articles it contains, and to come back to the parent letter. |