Wiki

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

Multiple-database support in Yii

Created 2 years ago by Steve FriedlHow-tos8 comments – viewed 36,141 times – ( +20 )
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

Guidelines for good schema design

Created about a year ago by Steve FriedlTips13 comments – viewed 35,440 times – ( +123 )
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.

Multiple Databases and Multiple Domains

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

Update two models with one view

Created about a year ago by sensorarioTips10 comments – viewed 18,673 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

Use application on production/development environment without making changes

Created about a year ago by ifdatticTips2 comments – viewed 16,159 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.

Single table inheritance

Created about a year ago by samdarkHow-tos6 comments – viewed 13,733 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 7 months ago by yasenTutorials4 comments – viewed 8,570 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:

A simple class to use a different db for a module

Created 2 years ago by tydeas_drTips2 comments – viewed 8,534 times – ( +8 )
What would you do if you want/need to have a different than the main database connection in an module's models?

Sub-domains with different databases in Yii!

Created about a year ago by jwerdHow-tos3 comments – viewed 7,974 times – ( +1 )
Sub-domains with different databases in Yii!

Auto set model fields values

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