Most Common Errors

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?
 
M

Mary Chipman

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top