Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Creating a Buffer with the Same Name as the Database Table

Tags:

progress-4gl

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?

like image 823
pmartin Avatar asked Mar 30 '11 14:03

pmartin


1 Answers

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.

like image 106
Gordon Robertson Avatar answered Nov 09 '22 15:11

Gordon Robertson