Lines Matching refs:p_values
1266 * @param array $p_values the values to be inserted into each column
1270 function create($p_values) { argument
1273 if ($this->isUnique($p_values)) {
1275 $dataFile->write_record($p_values);
1282 * @param array $p_values the values for each column
1286 function update($p_id,$p_values) { argument
1290 $dataFile->update($p_id, $p_values);
1358 * @param array $p_values an array containing the fields
1362 function Record ($p_tableObj,$p_recordId,$p_values='') { argument
1367 $this->values = $p_values;
1368 if (count($p_values) < count($this->tableObj->columnObjs))
1369 … for ($counter=count($p_values)+1; $counter<=count($this->tableObj->columnObjs);$counter++)
1518 * @param array $p_values the values to be written into the columns of this new record
1522 function write_record ($p_values) { argument
1535 if (is_array($p_values)) {
1536 foreach($p_values as $value) {
1541 $buf.= $p_values;
1576 * @param array $p_values the values to be inserted into each column
1580 function update ($p_id, $p_values) { argument
1596 foreach($p_values as $value) {