Skip to content
Francesco Bianco edited this page Oct 22, 2015 · 2 revisions

Method: SchemaDB\Storable::store()

Description

## simple usage:   
$record->store();

## updater usage: 
$record->store(array(
  'Field_1' => 'value',
  'Field_2' => 'value',
  .
  .
  'Field_N' => 'value',
));

Parameters

Return value

See also

Example 1 - Create database from JSON file

$db->apply(array(

));

Example 2 - Create database from INI file

$db->apply(array(

));

Example 3 - Create database from XML file

$db->apply(array(

));