Pascal Sql Use and Pascal Sql Useby

A read or use of an SQL entity (the entity is not modified). For example:

1  PROCEDURE SOMEPROC; 
2  BEGIN 
3     exec sql select ename 
4        into :pname 
5        from employee 
6        where idnum = :num; 
7  END; 
Reference Kind
Entity Performing Reference
Entity Being Referenced
Pascal Sql Use
SOMEPROC (line 3)SOMEPROC (line 5)SOMEPROC (line 6)
enameemployeeidnum
Pascal Sql Useby
ename (line 3)employee (line 5)idnum (line 6)
SOMEPROCSOMEPROCSOMEPROC
 


Scientific Toolworks, Inc.
http://www.scitools.com