Skip to content
Advertisement

C# SQL Query – ExecuteNonQuery: Connection property has not been initialized

I have a number of blocks of code in my Windows Application that use the same structure to execute queries. After adding in a few new things to my code, these no longer work due to the error:

“ExecuteNonQuery: Connection property has not been initialized”

Blocks of code all look like this:

The new code does this:

The connections for these are defined at the top of the class.

Advertisement

Answer

You need to assign it a SqlConnection object.

Where connection is a SqlConnection object with your connection string etc.

Also for good practice you should wrap it in a using:

And paramerterized queries to prevent SQL Injection attacks.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement