2 Error Messages

2
Error messages can be generated from:
An error reported on an ADO.NET data provider has the following format:
[vendor] [dotnet_component] message
where dotnet_component is the component in which the error occurred. For example, an error message from a DataDirect Connect Oracle data provider looks like this:
[DataDirect] [.NET Oracle provider] Invalid precision specified.
If you receive this type of error, check the last ADO.NET call made by your application for possible problems or contact your ADO.NET application vendor.
An error that occurs in the data source includes the data store name, in the following format:
[vendor] [dotnet_component] [data_store] message
With this type of message, dotnet_component is the component that received the error specified by the data store. For example, you may receive the following message from an Oracle data store:
[DataDirect] [.NET Oracle provider] Oracle] ORA-0919:
specified length too long for CHAR column.
This type of error is generated by the database system. Check your database system documentation for more information or consult your database administrator. In this example, you would check your Oracle documentation.