Using a process template reading an SQLite2 table and writing to TPS (C:\Users\Public\Documents\myApp\data\v3DailyMetrics.tps) fails with Access Denied
The open is successful but the TryInsert throws an error
Further … the Open Mode may be Read Only which an ADD would be denied.
Help on STATUS example code notes IF STATUS(YourFile) % 16 = 0 !Opened Read-Only?
Your have to look in the DCT to see the default Open Mode. I think if you have it set to Deny All and try to open it on more than one thread, then it gets opened Read Only.
64 Decimal is Readonly+Deny None.
Try putting OPEN(v3DailyMetrics, ReadWrite+DenyNone) 042h and testing errorcode() and status() afterwards.
Also, trace out v3DailyMetrics{Prop:Name} and make sure the file it is opening is really where you think it is.