So far, in our ADO iteration, we are catching "Exception" and pass the exception to ADOExceptionHelper.Convert .
I would like to change it, catching the more specific "DbException".
About DbException the documentation say :
The DbException class is an abstract class used as the base class for
provider-specific exception class implementations.
I would like to catch DbException instead Exception.
Objection ?
Do we have some dialect for a data-provider that no throw exceptions inherited from DbException ?
Thanks.
Fabio Maulo