I seem to be behind a slow moving street cleaner creating a huge cloud of dust ... I develope and maintain client server apps under Progress and also have worked with Foxpro in a past life ... can someone please point me in the general direction of online material explaining how to do unbound record access using find, update?
In Progress there are several constructs that provide access to data;
This statement will provide one record for read (no-lock) or write (exclusive-lock)
find first | last <table> where <expression> no-lock | exclusive-lock
This statement will iterate through a range of records
for each <table> where <expression> exclusive-lock | no-lock
In looking through the online help it would appear that access does allow these types of constructs in a round about way ... first defining a container object to hold the data then define an sql statement then finally calling the statement. I have yet been able to get the examples to work in part due to the dim foo as database not being recognized.
what am I missing?
In Progress there are several constructs that provide access to data;
This statement will provide one record for read (no-lock) or write (exclusive-lock)
find first | last <table> where <expression> no-lock | exclusive-lock
This statement will iterate through a range of records
for each <table> where <expression> exclusive-lock | no-lock
In looking through the online help it would appear that access does allow these types of constructs in a round about way ... first defining a container object to hold the data then define an sql statement then finally calling the statement. I have yet been able to get the examples to work in part due to the dim foo as database not being recognized.
what am I missing?