Hello:
I have datawindow built in runtime (PB 6.5) with the following update properties:
dw_1.Modify("DataWindow.Table.UpdateTable='" + Upper(as_table_name) + "'"
dw_1.Modify("DataWindow.Table.UpdateWhere='1'"
dw_1.Modify("DataWindow.Table.UpdateKeyInPlace=Yes"
FOR ll_index = 1 TO UpperBound(as_key_columns[])
dw_1.Modify(as_key_columns[ll_index] + ".Key=Yes"
NEXT
FOR ll_index = 1 TO ll_col_count
dw_1.Modify("#" + String(ll_index) + ".Update=Yes"
NEXT
After dw_1.Update(True, False) function, all the changes are already commited in the database. (Before I perform commit using SQLCA)!!!!!!
What can cause such automatical commit ?
Any help would be greatly appreciated.
Thanks in advance
Anna
I have datawindow built in runtime (PB 6.5) with the following update properties:
dw_1.Modify("DataWindow.Table.UpdateTable='" + Upper(as_table_name) + "'"
dw_1.Modify("DataWindow.Table.UpdateWhere='1'"
dw_1.Modify("DataWindow.Table.UpdateKeyInPlace=Yes"
FOR ll_index = 1 TO UpperBound(as_key_columns[])
dw_1.Modify(as_key_columns[ll_index] + ".Key=Yes"
NEXT
FOR ll_index = 1 TO ll_col_count
dw_1.Modify("#" + String(ll_index) + ".Update=Yes"
NEXT
After dw_1.Update(True, False) function, all the changes are already commited in the database. (Before I perform commit using SQLCA)!!!!!!
What can cause such automatical commit ?
Any help would be greatly appreciated.
Thanks in advance
Anna