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

  • SEARCH
  • Home
  • 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 9032987
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T08:06:50+00:00 2026-06-16T08:06:50+00:00

I really don’t know how to explain it well in the title, but here’s

  • 0

I really don’t know how to explain it well in the title, but here’s my problem.

Among many overloading methods i have made this method that’s its only purpose is to insert given values into a give table :

public static int Insert(string cs, string table, string[] values)
{
    using (SqlConnection con = new SqlConnection(cs))
    {
        try
        {
            string strCommand = string.Format(
                "INSERT INTO {0} VALUES ({1})", 
                table, 
                values.Aggregate((a, b) => (a + ", " +b)));
            SqlCommand com = new SqlCommand(strCommand, con);
            con.Open();
            int result = com.ExecuteNonQuery();
            return result;

        }
        catch (SqlException ex)
        {
            HttpContext.Current.Response.Write(ex.Message);
            return 0;
        }
    }
}

Right now it’s not using parameterized queries, isn’t it?

I really want to implement this concept into it but i have no idea how.

  • 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-16T08:06:51+00:00Added an answer on June 16, 2026 at 8:06 am

    You can use Dictionary containing column names and their respective values

       Dictionary<string, object> values = new Dictionary<string,object>();
       values.Add("userid", 1022);
            values.Add("username", "JFord");
            values.Add("IsActive", 0);
       string table = "users";
    

    usage:

    MyClass.Insert("connection", "users", values);
    

    Method

    public static int Insert(string cs, string table, Dictionary<string,object> values)
    {
            string strCommand = string.Format("INSERT INTO {0} VALUES ({1})",
                table, "@"+String.Join(", @", values.Keys));
    
     //strCommand becomes: "INSERT INTO users VALUES (@userid, @username, @IsActive)"
    
            SqlCommand com = new SqlCommand(strCommand, conn);
    
            foreach (string key in values.Keys)
            {
                com.Parameters.AddWithValue("@" + key, values[key]);
            }
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I...really don't know how to word the title better. But basically, what I have
I really don't know if it's a Netbeans issue but here's the problem: In
I'm stuck on a problem I really don't know how to solve: I have
I really don't know how to explain this, but I'll do my best. I
I really don't know how to title this question, but I need some help
I have this problem and really don't know how to solve this. I'm having
I really don't know what my problem is lately, but Regex seems to be
I really don't know what title should I use to describe my problem. To
I really don't know what I'm doing with SQL, but I have two tables.
I really don't know how to solve this, I have found many many solutions

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.