Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8155799
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T16:46:05+00:00 2026-06-06T16:46:05+00:00

I have a series of inserts to be made on a table with a

  • 0

I have a series of inserts to be made on a table with a very large number of columns, e.g.:

INSERT INTO Table1 (A,B,C,...,Z) VALUES (@a,@b,@c,...,@z)

All the fields (A through Z) are nullable. You cannot perform the insert if you fail to explicitly set a command parameter that’s been written in the command text.

Since the column names are not really sequential (all have pretty random names), is there an easy way to loop through the parameters in the command text and set them to DBNull.Value? Or do I manually have to write out:

cmd.Parameters.AddWithValue("@a", DBNull.Value);
cmd.Parameters.AddWithValue("@b", DBNull.Value);
cmd.Parameters.AddWithValue("@c", DBNull.Value);
...
cmd.Parameters.AddWithValue("@z", DBNull.Value);

Or is the proper solution to build which columns are actually in-use and concatenate them together (and used parameters), then set the used parameters?

I tend to shy away from concatenation solutions for queries to avoid potential injection attacks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T16:46:07+00:00Added an answer on June 6, 2026 at 4:46 pm

    Here’s a more concise/cleaner way to set each parameter to null:

    foreach (var param in new[] { "@a", "@b", ... })
        cmd.Parameters.AddWithValue(param, DBNull.Value);
    

    I would also tend to shy away from the concatenation solution, but that might be different if your columns have default values defined in the DB, which would(?) be overwritten if you explicitly set them null in your insert statement.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a series of T-SQL DELETE FROM TABLE and INSERT statements to run.
I have a series of simple Insert INTO type statements but after running about
I have a series of links: <a href=#>insert into database1</a> <a href=#>insert into database2</a>
I have a series of data that I need to insert into a MySQL
I have a series of large, flat text files that I need to parse
Is it possible to have a table and insert data n a single row
I have an arraylist arr which contains a series of number, like 07, 52,
I have a table with the following fields: id VARCHAR(32) PRIMARY KEY, parent VARCHAR(32),
I have a php file which performs a series of insert queries. If any
Say you have a simple table that represents a time series for another entity

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.