noalyss  Version-6.7.2
Public Member Functions
Profile_sql Class Reference

Manage the table public.profile. More...

Inheritance diagram for Profile_sql:
Phpcompta_SQL

Public Member Functions

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

Detailed Description

Manage the table public.profile.

Definition at line 38 of file class_profile_sql.php.


Constructor & Destructor Documentation

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

Reimplemented from Phpcompta_SQL.

Definition at line 42 of file class_profile_sql.php.

References $cn, name, table, and type.

        {
                $this->table = "public.profile";
                $this->primary_key = "p_id";

                $this->name = array(
                        "p_id" => "p_id"
                        , "p_name" => "p_name"
                        , "p_desc" => "p_desc"
                        , "with_calc" => "with_calc"
                        , "with_direct_form" => "with_direct_form"
                );
                $this->type = array(
                        "p_id" => "numeric"
                        , "p_name" => "text"
                        , "p_desc" => "text"
                        , "with_calc" => "text"
                        , "with_direct_form" => "text"
                );
                $this->default = array(
                        "p_id" => "auto",
                );
                global $cn;

                parent::__construct($cn,$p_id);

        }

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