
Record Class
============


Attributes
==========

Field  -  Each field in the record has an attribute. The 
          fields are numbered from 1..N.


Methods
=======


Interfaces
==========

Example
======= 

............

   c      : Connection.....Object;
   Result : Result_Set.Handle;
   R      : Record.Handle;

   name   : String( 1..40 );
   empno  : Integer ;
begin
   .....
   Result := Execute( c ); 

   while not End_of_Result_Set( Result ) loop
      declare
         R   : Record.Handle := Next( Result );
      begin
         empno := Field( R, 1 );
         Copy_Field( R, 2, name );
      end;
      
   end loop;

   Close( Result );
end ;

