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

Public Member Functions

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

Detailed Description

Definition at line 31 of file class_impcard_file_csv_sql.php.

Constructor & Destructor Documentation

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

Definition at line 34 of file class_impcard_file_csv_sql.php.

References name, and table.

35  {
36  $this->table="importcard.file_csv";
37  $this->primary_key="id";
38  /*
39  * List of columns
40  */
41  $this->name=array(
42  "id"=>"id"
43  , "file_name"=>"file_name"
44  , "file_timestamp"=>"file_timestamp"
45  );
46  /*
47  * Type of columns
48  */
49  $this->type=array(
50  "id"=>"numeric"
51  , "file_name"=>"text"
52  , "file_timestamp"=>"timestamp with time zone"
53  );
54 
55 
56  $this->default=array(
57  "id"=>"auto",
58  "file_timestamp"=>"auto"
59  );
60 
61  $this->date_format="DD.MM.YYYY";
62  parent::__construct($p_cn, $p_id);
63  }
$categorie_appel table
$categorie_appel name

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