table = "public.operation_exercice"; $this->primary_key = "oe_id"; /* * List of columns */ $this->name = array( "oe_id" => "oe_id", "oe_date" => "oe_date", "oe_text" => "oe_text", "oe_type" => "oe_type", "tech_user" => "tech_user", "tech_date" => "tech_date", "oe_dossier_id" => "oe_dossier_id", "oe_exercice" => "oe_exercice", "oe_transfer_date"=>"oe_transfer_date" ); /* * Type of columns */ $this->type = array( "oe_id" => "number", "oe_date" => "date", "oe_text" => "text", "oe_type" => "text", "tech_user" => "text", "tech_date" => "date", "oe_dossier_id" => "number", "oe_exercice" => "number", "oe_transfer_date"=>"date" ); $this->default = array( "oe_id" => "oe_id", "tech_user" => "tech_user", "tech_date" => "tech_date", ); $this->date_format = "DD.MM.YYYY"; parent::__construct($p_cn, $p_id); } }