Public Member Functions | |
__construct ($name, $vendorInfo=array()) | |
getName () | |
Get foreign key name. | |
addColumn ($column) | |
getColumns () | |
getVendorSpecificInfo () | |
Get vendor specific optional information for this primary key. | |
toString () | |
Private Attributes | |
$name | |
name of the primary key | |
$columns = array() | |
columns in the primary key | |
$vendorSpecificInfo = array() | |
additional vendor specific information |
Definition at line 29 of file PrimaryKeyInfo.php.
PrimaryKeyInfo::__construct | ( | $ | name, | |
$ | vendorInfo = array() | |||
) |
string | $name The name of the foreign key. |
Definition at line 43 of file PrimaryKeyInfo.php.
References $name.
00044 { 00045 $this->name = $name; 00046 $this->vendorSpecificInfo = $vendorInfo; 00047 }
PrimaryKeyInfo::addColumn | ( | $ | column | ) |
PrimaryKeyInfo::getColumns | ( | ) |
PrimaryKeyInfo::getName | ( | ) |
PrimaryKeyInfo::getVendorSpecificInfo | ( | ) |
Get vendor specific optional information for this primary key.
Definition at line 79 of file PrimaryKeyInfo.php.
PrimaryKeyInfo::toString | ( | ) |
PrimaryKeyInfo::$columns = array() [private] |
PrimaryKeyInfo::$name [private] |
name of the primary key
Definition at line 32 of file PrimaryKeyInfo.php.
Referenced by __construct().
PrimaryKeyInfo::$vendorSpecificInfo = array() [private] |