Re: Performance with qualifier/scope (was RE: GETFILE() Returns Empty String in Some Cases)

2017-08-05 Thread Laurie Alvey
A few thoughts: STORE can only refer to variables. FOR...ENDFOR loops only use variables.. The assignment x = y implies that x must be a variable (you cannot assign to a field using that syntax). The assignment x = m.y would remove any ambiguity. There are a load more examples on the FoxWiki

Re: Performance with qualifier/scope (was RE: GETFILE() Returns Empty String in Some Cases)

2017-08-04 Thread Alan Bourke
More typing, never seen the point. -- Alan Bourke alanpbourke (at) fastmail (dot) fm On Fri, 4 Aug 2017, at 10:49 AM, mbsoftwaresoluti...@mbsoftwaresolutions.com wrote: > On 2017-08-03 18:23, Darren wrote: > > Personally I use this approach ... > > > > STORE

Performance with qualifier/scope (was RE: GETFILE() Returns Empty String in Some Cases)

2017-08-04 Thread mbsoftwaresolutions
On 2017-08-03 18:23, Darren wrote: Personally I use this approach ... STORE m.variable|obj.property|table.fieldname to variable. Fully qualify everything / always. Easier to debug as well. Additional to results below ... STORE/ = | with/without m. | with/ without table open. No Table