- Categories
- Best Practice (7)
- DotKernel (12)
- javascript (1)
- PHP Development (6)
- Zend Framework (3)
Monthly Archives: March 2010
camelCase Table Names in MySQL on Windows
If you are using a WAMP stack, like WAMP or XAMPP, and try to create a table in camelCase ( example: adminLogin) you will notice that camelCase is not working, table name will be lowercase: adminlogin. In order to fix … Continue reading
Posted in DotKernel
2 Comments
DotKernel Database Naming Conventions for MySQL
DotKernel borrowed the database naming conventions from FaZend: Rules of naming of database tables and columns. FaZend is an open-source PHP framework based on Zend Framework. Database naming conventions for tables and columns: Singular table names only (e.g. user, category, … Continue reading