Creating a Buffer with the Same Name as the Database Table
Asked Answered
A

1

5

I've run across this code in a number of places:

DEFINE BUFFER Customer FOR Customer. 

I have two questions:

  1. What is the purpose of this? Why is it beneficial to create a buffer with the same name as the table?

  2. When writing code to access this table/buffer, how does Progress know whether to access the DB directly or through the buffer?

Armipotent answered 30/3, 2011 at 14:44 Comment(1)
@Tom Bascom May know that, he's progress' Jon Skeet, Sorry if I said his name in vainCaribou
D
8

1: It's usually done to manage the scope of the buffers.

If you have, for example, a procedure with a number of internal procedures which all access the same table, then the default buffer for that table will end up scoped to the top level procedure block. For example -

procedure p1:
    find first customer no-lock.
end.

procedure p2:
    find last customer no-lock.
end.

would end up scoping the customer buffer to the containing procedure. If you're trying to keep your internal procedures loosely coupled and self contained, then you might not want this behaviour. So you'd define a buffer within each of the internal procedures.

Obv there are other reasons to define buffers, but when you see code that defines a buffer with the same name as the table, it's usually about scope.

2: It always access the DB through a buffer. Every table has a default buffer with the same name as the table, so

find first <buffername>.

will look for a buffer named buffername which may be an explicitly defined buffer or an implicit default buffer. Precedence will go to an explicitly defined buffer if one exists.

Dyann answered 30/3, 2011 at 17:52 Comment(2)
One of the big advantages that this technique has is that it prevents accidental side effects, particularly record-locks, from impacting the main procedure or other internal procedures.Cenesthesia
Thanks for the comments Gordon - that was a great explanation. I understand the logic behind this, but I don't agree with the naming convention. To me, a buffer should still be prefixed with a "b-" or something else to explicity define that you're referencing the buffer. Using the DB table name as the buffer name only seems to make the code more confusing than it needs to be.Armipotent

© 2022 - 2024 — McMap. All rights reserved.