noalyss  Version-6.7.2
Public Member Functions
Anc_Key_Detail_SQL Class Reference

manage table key_distribution_detail More...

Inheritance diagram for Anc_Key_Detail_SQL:
Noalyss_SQL

Public Member Functions

 __construct (&$p_cn, $p_id=-1)

Detailed Description

manage table key_distribution_detail

Definition at line 96 of file class_anc_key_sql.php.


Constructor & Destructor Documentation

Anc_Key_Detail_SQL::__construct ( &$  p_cn,
p_id = -1 
)

Reimplemented from Noalyss_SQL.

Definition at line 98 of file class_anc_key_sql.php.

References name, table, and type.

    {
          
        $this->table = "public.key_distribution_detail";
        $this->primary_key = "ke_id";

        $this->name = array(
            "id" => "ke_id",
            "key"=>"kd_id",
            "row"=>"ke_row",
            "percent"=>"ke_percent"
        );

        $this->type = array(
            "ke_id" => "numeric",
            "kd_id" => "numeric",
            "ke_row" => "numeric",
            "ke_percent" => "numeric"
        );

        $this->default = array(
            "ke_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