You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OCESQLSetResultParams take ~ 20% in some tested batch programs - and nearly all of this time is spend in add_sql_res_var_list. And ~15% of the cpu time is only spend in the following loop (here: line 2407)
The simple solution: add another var next to _sql_var_lists that contains the last current entry, set it likely only in the same function, use it instead of the loop. Result: 14% cpu time saved.
The text was updated successfully, but these errors were encountered:
OCESQLSetResultParams
take ~ 20% in some tested batch programs - and nearly all of this time is spend inadd_sql_res_var_list
. And ~15% of the cpu time is only spend in the following loop (here: line 2407)Open-COBOL-ESQL/dblib/ocesql.c
Lines 2407 to 2409 in eec3a23
The simple solution: add another var next to
_sql_var_lists
that contains the last current entry, set it likely only in the same function, use it instead of the loop. Result: 14% cpu time saved.The text was updated successfully, but these errors were encountered: