Wiki

Articles tagged with "database", sorted by commentsX
Displaying 1-10 of 13 result(s).

Guidelines for good schema design

Created about a year ago by Steve FriedlTips13 comments – viewed 36,824 times – ( +127 )
Virtually all Yii applications are built on top of a database, and though Yii is very flexible in how it addresses your DB, some design choices make things more convenient than others.

Update two models with one view

Created about a year ago by sensorarioTips10 comments – viewed 19,442 times – ( +10 / -2 )
Suppose to have two models: Users and Emails. You do not want to store email in a Users model. And User can have 0 or many emails. This is the form generated to create a new user (just username).
tags: database, model, view, form

Multiple-database support in Yii

Created 2 years ago by Steve FriedlHow-tos8 comments – viewed 37,869 times – ( +21 )
The customary configuration of a Yii application includes just a single database section in the protected/config/main.php file, but it's easy to extend this to support more than one, tying each Model to one of the databases.
tags: Database

Single table inheritance

Created 2 years ago by samdarkHow-tos6 comments – viewed 14,259 times – ( +31 )
Relational databases do not support inheritance so if we need to represent it, we have to somehow store meta info while keeping performance by minimizing JOINs. One way to solve this problem is using single table inheritance. All fields for the whole class tree are stored in a single table. Class name is stored in the type field of the same table.

How to display static pages in Yii with database content?

Created 8 months ago by yasenTutorials4 comments – viewed 9,284 times – ( +4 )
To extend further static pages as shown by Qiang http://www.yiiframework.com/wiki/22/how-to-display-static-pages-in-yii/ here're the steps to take:

Auto set model fields values

Created 11 months ago by vibhaJadwaniTutorials3 comments – viewed 7,733 times – ( +7 )
This is a tutorial for how to auto set model values without any code.

Sub-domains with different databases in Yii!

Created 2 years ago by jwerdHow-tos3 comments – viewed 8,244 times – ( +1 )
Sub-domains with different databases in Yii!

Use application on production/development environment without making changes

Created about a year ago by ifdatticTips2 comments – viewed 16,985 times – ( +8 / -1 )
I like programing on my localhost, however it really bugged me to make changes to index.php & config files on my production server. After combining all available wiki articles on this topic and some trial and error this is what I use for my applications so I could just upload it to production server and it will work without any changes.

Multiple Databases and Multiple Domains

Created 2 years ago by got 2 doodleTutorials2 comments – viewed 21,370 times – ( +12 / -2 )
Add these lines in /config/main.php
tags: database

Getting nulls from database instead of empty strings

Created 2 years ago by samdarkTips2 comments – viewed 6,829 times – ( +12 )
To get null from database instead of empty strings you need to set up your DB connection as follows:
tags: database, null