noalyss
Version-6.7.2
|
Manage the table public.profile. More...
Public Member Functions | |
__construct (&$p_cn, $p_id=-1) |
Manage the table public.profile.
Definition at line 38 of file class_profile_sql.php.
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); }