Statistics
The Highest Post







Statistics
Count 94
Avg 21.00
Min 21
Max 21

Details



Peter Agyekum How we can handle SQL Exceptions in ASP.NET? We can use try, catch and finally block for error handling. Use SqlException class to handle exceptions specific to SQL Server. try { //some code } catch(SQLException ex) { //Handle SQL Exception }
Related Topics