Plugins  LAST
 All Data Structures Files Functions Variables Pages
Public Member Functions
Impacc_Import_file_SQL Class Reference
Inheritance diagram for Impacc_Import_file_SQL:
Inheritance graph
Collaboration diagram for Impacc_Import_file_SQL:
Collaboration graph

Public Member Functions

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

Detailed Description

Definition at line 39 of file class_impacc_import_file_sql.php.

Constructor & Destructor Documentation

Impacc_Import_file_SQL::__construct ( Database  $p_cn,
  $p_id = -1 
)

Definition at line 42 of file class_impacc_import_file_sql.php.

References name, and table.

43  {
44  $this->table = "impacc.import_file";
45  $this->primary_key = "id";
46 /*
47  * List of columns
48  */
49  $this->name=array(
50  "id"=>"id"
51  ,"i_filename"=>"i_filename"
52  ,"i_tmpname"=>"i_tmpname"
53  ,"i_type"=>"i_type"
54  ,"i_date_transfer"=>"i_date_transfer"
55  ,"i_date_import"=>"i_date_import"
56  );
57 /*
58  * Type of columns
59  */
60  $this->type = array(
61  "id"=>"numeric"
62  ,"i_filename"=>"text"
63  ,"i_tmpname"=>"text"
64  ,"i_type"=>"text"
65  ,"i_date_transfer"=>"timestamp without time zone"
66  ,"i_date_import"=>"timestamp without time zone"
67  );
68 
69 
70  $this->default = array(
71  "id" => "auto"
72  );
73 
74  $this->date_format = "DD.MM.YYYY HH:MI:SS";
75  parent::__construct($p_cn,$p_id);
76  }
$categorie_appel table
$categorie_appel name

The documentation for this class was generated from the following file: