Click here to Skip to main content
Click here to Skip to main content

Instantiating an SqlException

By , 20 Apr 2011
 
When I was testing my handling of Exceptions for my database access classes, I found that I couldn't just instantiate and throw an SqlException. An SqlException requires a collection of SqlErrors, and the designers must have decided that developers can't be trusted to create them properly. The result is that the SqlException, SqlError, and SqlErrorCollection classes have no public constructors.
 
That's no problem, of course, because we can use Reflection. The following code uses Reflection to access the private constructors of these classes.
 
namespace PIEBALD.Lib
{
    public static partial class SqlError
    {
        private static readonly System.Reflection.ConstructorInfo constructor;
 
        private static SqlError()
        {
            constructor = 
                typeof(System.Data.SqlClient.SqlError).GetConstructor
                (
                    System.Reflection.BindingFlags.NonPublic | 
                    System.Reflection.BindingFlags.Instance,
                    null,
                    new System.Type[] 
                    { 
                        typeof(int), 
                        typeof(byte), 
                        typeof(byte), 
                        typeof(string), 
                        typeof(string),
                        typeof(string), 
                        typeof(int) 
                    },
                    null
                );
 
            return;
        }
 
        public static System.Data.SqlClient.SqlError Create(
            int InfoNumber,
            byte ErrorState,
            byte ErrorClass,
            string Server,
            string ErrorMessage,
            string Procedure,
            int LineNumber
        )
        {
            return 
            (
                (System.Data.SqlClient.SqlError)constructor.Invoke
                (
                    new object[]
                    {
                        InfoNumber,
                        ErrorState,
                        ErrorClass,
                        Server,
                        ErrorMessage,
                        Procedure,
                        LineNumber
                    }
                )
            );
        }
    }
 
    public static partial class SqlErrorCollection
    {
        private static readonly System.Reflection.ConstructorInfo constructor;
        private static readonly System.Reflection.MethodInfo add;
 
        static SqlErrorCollection()
        {
            constructor = 
                typeof(System.Data.SqlClient.SqlErrorCollection).GetConstructor
                (
                    System.Reflection.BindingFlags.NonPublic | 
                    System.Reflection.BindingFlags.Instance,
                    null,
                    new System.Type[] { },
                    null
                );
 
            add = typeof(System.Data.SqlClient.SqlErrorCollection).GetMethod
            (
                "Add",
                System.Reflection.BindingFlags.NonPublic | 
                System.Reflection.BindingFlags.Instance
            );
 
            return;
        }
 
        public static System.Data.SqlClient.SqlErrorCollection Create(
            params System.Data.SqlClient.SqlError[] SqlErrors
        )
        {
            System.Data.SqlClient.SqlErrorCollection result = 
                (System.Data.SqlClient.SqlErrorCollection)constructor.Invoke
                (
                    new System.Type[] { }
                );
 
            foreach (System.Data.SqlClient.SqlError err in SqlErrors)
            {
                add.Invoke(result, new object[] { err });
            }
 
            return (result);
        }
    }
 
    public static partial class SqlException
    {
        private static readonly System.Reflection.ConstructorInfo constructor;
 
        static SqlException()
        {
            constructor = typeof(System.Data.SqlClient.SqlException).GetConstructor
            (
                System.Reflection.BindingFlags.NonPublic | 
                System.Reflection.BindingFlags.Instance,
                null,
                new System.Type[] 
                { 
                    typeof(string), 
                    typeof(System.Data.SqlClient.SqlErrorCollection) 
                },
                null
            );
 
            return;
        }
 
        public static System.Data.SqlClient.SqlException Create(
            string Message, 
            System.Data.SqlClient.SqlErrorCollection ErrorCollection
        )
        {
            return 
            (
                (System.Data.SqlClient.SqlException)constructor.Invoke
                (
                    new object[]
                    {
                        Message,
                        ErrorCollection
                    }
                )
            );
        }
    }
}
 
I'll reiterate that this is handy for unit testing Exception handling code -- I don't recommend using it in production; there shouldn't be a need to use it in production anyway.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

PIEBALDconsult
Software Developer (Senior)
United States United States
Member
BSCS 1992 Wentworth Institute of Technology
 
Originally from the Boston (MA) area. Lived in SoCal for a while. Now in the Phoenix (AZ) area.
 
OpenVMS enthusiast, ISO 8601 evangelist, photographer, opinionated SOB
 
---------------
 
"If you need help knowing what to think, let me know and I'll tell you." -- Jeffrey Snover [MSFT]
 

"Typing is no substitute for thinking." -- R.W. Hamming
 
"I find it appalling that you can become a programmer with less training than it takes to become a plumber." -- Bjarne Stroustrup
 
ZagNut’s Law: Arrogance is inversely proportional to ability.
 
"Well blow me sideways with a plastic marionette. I've just learned something new - and if I could award you a 100 for that post I would. Way to go you keyboard lovegod you." -- Pete O'Hanlon
 
"linq'ish" sounds like "inept" in German -- Andreas Gieriet
 

"Things would be different if I ran the zoo." -- Dr. Seuss
 
"Wrong is evil, and it must be defeated." – Jeff Ello
 
"A good designer must rely on experience, on precise, logical thinking, and on pedantic exactness." -- Nigel Shaw
 

"Omit needless local variables." -- Strunk... had he taught programming
 
"DON'T BE LIBERAL IN WHAT YOU ACCEPT!"
 
"Software Engineers don't have Trophy Wives; they have Presentation Layers."
 
"We learn more from our mistakes than we do from getting it right the first time."
 
"I'm an old dog and I like old tricks."
 
"Sometimes the envelope pushes back and sometimes you get a really nasty paper cut."
 
"A method shall have one and only one return statement."
 
My first rule of debugging: "If you get a different error message, you're making progress."
 
My golden rule of database management: "Do not unto others' databases as you would not have done unto yours."
 
My general rule of software development: "Design should be top-down, but implementation should be bottom-up."
 
"Today's heresy is tomorrow's dogma."
or
"Today's dogma is yesterday's heresy."

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralLol @ Indivara.. ahaha:D You just lifted my spirits up today...memberPasanRatnayake25 Apr '11 - 20:30 
GeneralCompletely OT, but out of curiosity, don't you like syntax h...subeditorIndivara23 Apr '11 - 21:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130513.1 | Last Updated 20 Apr 2011
Article Copyright 2011 by PIEBALDconsult
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid