Plugins  LAST
 All Data Structures Files Functions Variables Pages
class_copro_appel_fond_detail.php
Go to the documentation of this file.
1 <?php
2 
3 /**
4  * @brief manage the table coprop.appel_fond_detail
5  */
7 {
8  function insert()
9  {
10  global $cn;
11  $this->afd_id=$cn->get_value("insert into coprop.appel_fond_detail
12  (af_id,lot_id,key_id,afd_amount,key_tantieme,lot_tantieme)
13  values ($1,$2,$3,$4,$5,$6) returning afd_id",
14  array(
15  $this->af_id, //1
16  $this->lot_id, //2
17  $this->key_id, //3
18  $this->afd_amount, //4
19  $this->key_tantieme, //5
20  $this->lot_tantieme)); //6
21  }
22 }
23 ?>
manage the table coprop.appel_fond_detail
global $cn