Model view controller is a type of software architecture that is designed to separate the programming code that handles presentation, application logic and business logic. This makes systems using a model view controller architecture much simpler to maintain, as locating the code relevant to specific logic is significantly easier. Additionally, it makes expansion of systems much less complex, [...]
Articles Tagged as ‘databases’
Simple Explanation of Model View Controller (MVC)
SQL Check Constraints not supported in MySQL
I previously wrote about using SQL check constraints in MySQL. It seems however that the MySQL relational database management system (RDBMS) does not actually support the fundamental verification used by check constraints in other RDBMSs. This means that although you can add check constraints to tables without issue, they are not validated and data is [...]
SQL Check Constraints on MySQL Databases
An SQL check constraint is used and designed in the schema of a database table to restrict the range of values that can be entered into a specific field. In many experienced, they are very rarely used. However, these simple checks, entered at the time of database table creation, can provide additional safe guards against [...]
Category
Tags
- controllers
- CRUD
- databases
- feature cascade
- logic
- Model View Controller
- models
- MVC
- software architectures
- views