noalyss Version-9
Public Member Functions
Stock_Goods_Sql Class Reference

ORM abstract of the table public.stock_goods. More...

+ Inheritance diagram for Stock_Goods_Sql:
+ Collaboration diagram for Stock_Goods_Sql:

Public Member Functions

 __construct ($cn, $p_id=-1)
 
- Public Member Functions inherited from Table_Data_SQL
 __construct ($p_cn, $p_id=-1)
 
 build_query ()
 Build the SQL select statement for querying the object and returns it. More...
 
 column_update ($column_expr, $value)
 update the value of a column with an expression for $value for the current record More...
 
 count ($p_where="", $p_array=null)
 return the number of count in the table corresponding to the where condition More...
 
 delete ()
 
 exist ()
 Count the number of record with the id ,. More...
 
 get_all_to_array ($p_key_col, $p_cond="", $p_array=NULL)
 Get all the row and use the p_key_code are the key value of array. More...
 
 insert ()
 
 load ()
 Load the current row return false if not found. More...
 
 seek ($cond='', $p_array=null)
 retrieve array of object thanks a condition More...
 
 update ()
 
- Public Member Functions inherited from Data_SQL
 __construct (DatabaseCore $p_cn, $p_id=-1)
 
 __toString ()
 
 collect_objects ($cond='', $p_array=null)
 return an array of objects. More...
 
 count ($p_where="", $p_array=null)
 
 delete ()
 
 exist ()
 Count the number of record with the id ,. More...
 
 from_array ($p_array)
 Transform an array into object. More...
 
 get ($p_string)
 get the value thanks the colum name and not the alias (name). More...
 
 get_cn ()
 
 get_info ()
 
 get_name ()
 
 get_object ($p_ret, $idx)
 
 get_pk_value ()
 
 get_primary_key ()
 
 get_type ()
 
 getp ($p_string)
 set the value thanks the alias name instead of the colum name More...
 
 insert ()
 
 load ()
 Load the current row return false if not found. More...
 
 next ($ret, $i)
 get_seek return the next object, the return of the query must have all the column of the object More...
 
 save ()
 Insert or update : if the row already exists, update otherwise insert. More...
 
 seek ($cond='', $p_array=null)
 retrieve array of object thanks a condition More...
 
 set ($p_string, $p_value)
 set the value thanks the colum name and not the alias (name) More...
 
 set_cn ($cn)
 
 set_name ($name)
 
 set_pk_value ($p_value)
 
 set_primary_key ($primary_key)
 
 set_type ($type)
 
 setp ($p_string, $p_value)
 set the value thanks the alias name instead of the colum name More...
 
 to_array ($prefix="")
 Turn an object (row) into an array, and the key could be prefixed with $prefix. More...
 
 to_row ($p_array)
 turns a row fetched from the DB into a SQL object in updating all his attribute More...
 
 update ()
 
 verify ()
 

Additional Inherited Members

- Data Fields inherited from Data_SQL
 $cn
 
 $date_format
 Type of the data. More...
 
 $default
 defaullt date format More...
 
 $name
 Database connection. More...
 
 $primary_key
 Array of logical and real name. More...
 
 $table
 
 $type
 Column name of the primary key. More...
 

Detailed Description

ORM abstract of the table public.stock_goods.

Definition at line 33 of file stock_goods_sql.class.php.

Constructor & Destructor Documentation

◆ __construct()

Stock_Goods_Sql::__construct (   $cn,
  $p_id = -1 
)

Reimplemented from Table_Data_SQL.

Definition at line 36 of file stock_goods_sql.class.php.

37 {
38 $this->table = "public.stock_goods";
39 $this->primary_key = "sg_id";
40 $this->date_format="DD.MM.YYYY";
41
42 $this->name = array(
43 "sg_id" => "sg_id",
44 "j_id" => "j_id",
45 "f_id" => "f_id",
46 "sg_code" => "sg_code",
47 "sg_quantity" => "sg_quantity",
48 "sg_type" => "sg_type",
49 "sg_date" => "sg_date",
50 "sg_tech_date" => "sg_tech_date",
51 "sg_tech_user" => "sg_tech_user",
52 "sg_comment" => "sg_comment",
53 "sg_exercice" => "sg_exercice",
54 "r_id" => "r_id",
55 "c_id"=>"c_id"
56 );
57
58 $this->type = array(
59 "sg_id" => "numeric",
60 "j_id" => "numeric",
61 "f_id" => "numeric",
62 "sg_code" => "text",
63 "sg_quantity" => "text",
64 "sg_type" => "text",
65 "sg_date" => "date",
66 "sg_tech_date" => "date",
67 "sg_tech_user" => "text",
68 "sg_comment" => "text",
69 "sg_exercice" => "sg_exercice",
70 "r_id" => "numeric",
71 "c_id" => "numeric"
72
73 );
74
75 $this->default = array(
76 "sg_id" => "auto",
77 "sg_tech_date" => "auto",
78 "sg_user" => "auto"
79 );
80 global $cn;
81
82 parent::__construct($cn, $p_id);
83 }
$from_poste name
$input_from type
Definition: balance.inc.php:65
$all table

References Data_SQL\$cn, $p_id, name, table, and type.


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