noalyss  Version-6.7.2
Public Member Functions
Anc_Key_SQL Class Reference

Manage the table key_distribution. More...

Inheritance diagram for Anc_Key_SQL:
Noalyss_SQL

Public Member Functions

 __construct ($p_cn, $p_id=-1)

Detailed Description

Manage the table key_distribution.

Definition at line 32 of file class_anc_key_sql.php.


Constructor & Destructor Documentation

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);
    }

The documentation for this class was generated from the following file:
 All Data Structures Namespaces Files Functions Variables Enumerations