Fill the database with objects of the registered classes.
MCO_RET mco_calc_fill_db( /*IN*/ mco_calc_t * calc );
| calc | A handle to the initialized calculator object |
This function fills the database with objects of classes registered in the calculator passed in
calc.
| MCO_S_OK | The objects defined in the schema calculator class were successfully instantiated |
|
MCO_E_NOMEM |
Out of memory allocating objects |
|
MCO_E_TRANSACT |
A transaction was in an error state during calculator processing |
Application snippet: const char * dbname = "calc_db"; static mco_cc_t my_classes[] = { MCO_CALC_DEFINE_CLASS("class1", 10000), MCO_CALC_DEFINE_CLASS("class2", 20000), MCO_CALC_CLASSES_END, }; int main(int argc, char* argv[]) { MCO_RET rc; mco_device_t dev; mco_calc_t calc; mco_db_params_t db_params; mco_runtime_start(); ... mco_calc_init(&calc, calc_db_get_dictionary()); ... rc = mco_db_open_dev( dbname, simple_get_dictionary(), &dev, 1, &db_params ); if ( MCO_S_OK != rc ) { rc = mco_db_connect( dbname, &calc.db ); ... rc = mco_calc_class_add(&calc, my_classes[0]); rc = mco_calc_class_add(&calc, my_classes[1]); ... rc = mco_calc_fill_db(&calc); ... /* NOTE: calculator *must* be deinitialized before you disconnect from the database */ mco_calc_deinit(&calc); mco_db_disconnect(calc.db); } }
For further implementation details see SDK sample "samples/native/core/17-statistics/dbcalc".