noalyss
Version-6.7.2
|
Manage the table public.tag. More...
Public Member Functions | |
__construct (&$p_cn, $p_id=-1) |
Manage the table public.tag.
Definition at line 26 of file class_tag_sql.php.
Tag_SQL::__construct | ( | &$ | p_cn, |
$ | p_id = -1 |
||
) |
Reimplemented from Phpcompta_SQL.
Definition at line 30 of file class_tag_sql.php.
References $cn, name, table, and type.
{ $this->table = "public.tags"; $this->primary_key = "t_id"; $this->name = array( "t_id" => "t_id" , "t_tag" => "t_tag" , "t_description" => "t_description" ); $this->type = array( "t_id" => "numeric" , "t_tag" => "text" , "t_description" => "text" ); $this->default = array( "t_id" => "auto", ); global $cn; parent::__construct($cn,$p_id); }