gettimeofday(&tv,NULL);
__CREATE_QUERY("insert into co_%s_profiler(id_meta_method,begin_sec,begin_usec)
values(
         (select id from co_%s_meta_method where method_name='%s' and class_name='%s'),
         %ld,
         %ld
         )",par_area,par_area,par_method,par_class,tv.tv_sec,tv.tv_usec)
__SQL_EXEC

__SQL_GET_INTEGER(id_newEntry,"select last_value from co_%s_profiler_sqid",par_area)

cou_setReturnValue(cnx, &id_newEntry, CO_INTEGER);