Hi i am trying to build a excel like power apps to a user maintained Oracle table.
for a new record insert i am doing a patch function directly to the oracle table and doing clearcollect function so that new record will be added to the collections. I am using UTC date format for date field.
patch(oracletable, column1, column2);
clearcollect(collectname, Oracletable)
i am using collection for my gallery to show data so if i add a new with 8/25/2022 date in the date field it is showing fine in gallery but in collection it is taking it as 8/24/2022 20:00:00 and actually sending this 8/24/2022 date when i do a patch to my oracle table from collection.
I am assuming when i entered the date 8/25 by default it will 00:00 hours not sure why it is substracting 4 hours when loading data into collection.
please advice. TIA