Most Common Errors

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

What are the most common errors that come up when ADO.NET is used to connect to a database for eg SQL Server 2000 or Oracle?
 
It depends on what operations you are performing, where validation
routines are performed, etc. In general you want to minimize server
errors by validating all data sent to the server ahead of time on the
client. Triggering server errors is expensive, resulting in wasted
round-trips to the server. So ideally you'd only get fatal errors
being returned to your application.

--Mary
 
Back
Top