noalyss
Version-6.7.2
|
Manage the table key_distribution. More...
Public Member Functions | |
__construct ($p_cn, $p_id=-1) |
Manage the table key_distribution.
Definition at line 32 of file class_anc_key_sql.php.
Anc_Key_SQL::__construct | ( | $ | p_cn, |
$ | p_id = -1 |
||
) |
Definition at line 35 of file class_anc_key_sql.php.
References name, table, and type.
{ $this->table = "public.key_distribution"; $this->primary_key = "kd_id"; $this->name = array( "id" => "kd_id", "name"=>"kd_name", "description"=>"kd_description" ); $this->type = array( "kd_id" => "numeric", "kd_name" => "text", "kd_description" => "text" ); $this->default = array( "kd_id" => "auto" ); // PHPUNIT seems to have a problem with this line //global $cn; parent::__construct($p_cn, $p_id); }