noalyss  Version-6.7.2
Public Member Functions
Tag_SQL Class Reference

Manage the table public.tag. More...

Inheritance diagram for Tag_SQL:
Phpcompta_SQL

Public Member Functions

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

Detailed Description

Manage the table public.tag.

Definition at line 26 of file class_tag_sql.php.


Constructor & Destructor Documentation

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

        }

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