
Error Class
===========

   Contains details about data access errors that pertain to a single 
   operation involving the provider.              
   The error object stores all errors occured during execution of 
   a single command.

Constructors
============  

Attributes
==========
   Error::Integer   - Return the n-th error
   Errors::Natural  - Number of stored errors


Methods
=======
   Reset            - Reset the error object


Helpers
=======

Interfaces
==========

Example
======= 

procedure Get_Data( 
   con : in out Connection.Object'Class ) is
   ---
   cmd : Command.Handle := Create_Query( con, "select *.....") ;
   err : ..Error.ODBC.Object;
begin

   result := Execute( con, cmd, err ); 



exception

   when Others =>
      for i in 1..Errors(err) loop
         ... Handle Error(i) ....
      end loop;


end;

