SqlException detail info: line number, procedure, server : SqlException « Database ADO.net « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Design Patterns
8.Development Class
9.Event
10.File Stream
11.Generics
12.GUI Windows Form
13.Language Basics
14.LINQ
15.Network
16.Office
17.Reflection
18.Regular Expressions
19.Security
20.Services Event
21.Thread
22.Web Services
23.Windows
24.Windows Presentation Foundation
25.XML
26.XML LINQ
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Database ADO.net » SqlExceptionScreenshots 
SqlException detail info: line number, procedure, server


using System;
using System.Data;
using System.Data.SqlClient;

   class SqlExceptionDemo {
      static void Main(){
         string connString = "server=(local)\\SQLEXPRESS;database=MyDatabase;Integrated Security=SSPI";

         SqlConnection conn = new SqlConnection(connString);
         SqlCommand cmd = conn.CreateCommand();

         cmd.CommandType = CommandType.StoredProcedure;
         cmd.CommandText = "wrong command";

         try {
            conn.Open();
            cmd.ExecuteNonQuery();
         }  
         catch (System.Data.SqlClient.SqlException ex)
         {
            string str;
            str = "Source:"+ ex.Source;        
            str += "\n""Number:"+ ex.Number.ToString();
            str += "\n""Message:"+ ex.Message;
            str += "\n""Class:"+ ex.Class.ToString ();
            str += "\n""Procedure:"+ ex.Procedure.ToString();
            str += "\n""Line Number:"+ex.LineNumber.ToString();
            str += "\n""Server:"+ ex.Server.ToString();
        
            Console.WriteLine (str, "Database Exception");
         }
         catch (System.Exception ex)
         {
            string str;
            str = "Source:"+ ex.Source;
            str += "\n""Error Message:"+ ex.Message;
            Console.WriteLine (str, "General Exception");
         }
         finally
         {
            if (conn.State == ConnectionState.Open)
            {
               Console.WriteLine ("Finally block closing the connection""Finally");
               conn.Close();
            }        
         
      }
   }



           
       
Related examples in the same category
1.SqlException message
2.Catch Sql command exceptions
3.Deal with multiple Sql error in SqlException
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.