Documentation

Table Of Contents

Previous topic

< Class Phalcon\Db\RawValue

Next topic

Class Phalcon\Db\Result\Pdo >

This Page

Class Phalcon\Db\Reference

implements Phalcon\Db\ReferenceInterface

Allows to define reference constraints on tables

<?php

$reference = new \Phalcon\Db\Reference("field_fk", array(
    'referencedSchema' => "invoicing",
    'referencedTable' => "products",
    'columns' => array("product_type", "product_code"),
    'referencedColumns' => array("type", "code")
));

Methods

public getName ()

Constraint name

public getSchemaName ()

...

public getReferencedSchema ()

...

public getReferencedTable ()

Referenced Table

public getColumns ()

Local reference columns

public getReferencedColumns ()

Referenced Columns

public getOnDelete ()

ON DELETE

public getOnUpdate ()

ON UPDATE

public __construct (unknown $name, unknown $definition)

Phalcon\Db\Reference constructor

public static Phalcon\Db\Reference __set_state (unknown $data)

Restore a Phalcon\Db\Reference object from export

Follow along: