You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

1.1 KiB

ActiveRecord

Scenarios

All possible scenario formats supported by ActiveRecord:

public function scenarios()
{
    return array(
        // 1. attributes array
        'scenario1' => array('attribute1', 'attribute2'),

        // 2. insert, update and delete operations won't be wrapped with transaction (default mode)
        'scenario2' => array(
            'attributes' => array('attribute1', 'attribute2'),
            'atomic' => array(), // default value
        ),

        // 3. insert and update operations will be wrapped with transaction, delete won't be wrapped
        'scenario4' => array(
            'attributes' => array('attribute1', 'attribute2'),
            'atomic' => array(self::OPERATION_INSERT, self::OPERATION_UPDATE),
        ),

        // 5. insert and update operations won't be wrapped with transaction, delete will be wrapped
        'scenario5' => array(
            'attributes' => array('attribute1', 'attribute2'),
            'atomic' => array(self::OPERATION_DELETE),
        ),
    );
}

Query

Basic Queries

Relational Queries

Scopes