Esempio n. 1
0
 /**
  * Creates a new FileMaker_Record object. This method does not
  * save the new record to the database. The record is not created
  * on the server until you call its commit() method. You must
  * specify a layout name, and you can optionally specify an array
  * of field values. Values can be set on the new record object
  * individually as well.
  *
  * @param string $layout The layout to create a new record for.
  * @param array $fieldValues Initial values for the new record's fields.
  *
  * @return FileMaker_Record The new record object.
  */
 function &createRecord($layout, $fieldValues = array())
 {
     return $this->_impl->createRecord($layout, $fieldValues);
 }