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 7430601
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T09:10:03+00:00 2026-05-29T09:10:03+00:00

I am working on WPF application in C#. Database is SQL Server 2008. I

  • 0

I am working on WPF application in C#. Database is SQL Server 2008. I have a table “Employee” in database, I need to insert a row in it. I have successfully connected with database, but when I tried to execute this line:

cmd = new SqlCommand(cmdText, conn);

This errors comes up: The best overloaded method match for ‘System.Data.SqlClient.SqlCommand.SqlCommand(String, System.Data.SqlClient.SqlConnection)’ has some invalid arguments.

Here is my code:

private void addbtn_Click(object sender, RoutedEventArgs e)
    {
        //FUNCTION TO ADD NEW EMPLOYEE RECORD IN DATABASE
        try
        {
            conn.ConnectionString = "Data Source=AZEEMPC;" + "Initial Catalog=IEPL_Attendance_DB;";
            conn.Open();
            cmdText = "INSERT INTO Employee VALUES ('" + strCurrentString + "','" + emp_name.Text + "')";
            cmd = new SqlCommand(cmdText, conn);
            data_ad = new SqlDataAdapter(cmd);
            data = new DataSet();
            data_ad.Fill(data);
            MessageBox.Show("Record Inserted Successfully!");
        }
        catch (Exception ex)
        {
            MessageBox.Show(ex.Message);
        }
    }

Any suggestions?

  • 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-05-29T09:10:04+00:00Added an answer on May 29, 2026 at 9:10 am

    conn needs to be of type SqlConnection – can you confirm that it is?

    SqlConnection conn;
    

    Because it’s a native SQL Server connection, you don’t need to pass the driver name in the connection string.

    conn.ConnectionString = "Server=AZEEMPC;Database=IEPL_Attendance_DB;Trusted_Connection=true;";
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am working on WPF application, and now I have to choose which database
I have a simple WPF application I'm working on, which performs a SQL query
I am working on a wpf application. Here I need to use System.Windows.Forms.FolderBrowserDialog in
I'm building a WPF application and working with the MVVM pattern. I have 4
I'm currently working out the layout of a WPF Application and seem to have
I have a project I'm working on that requires our WPF application read SMS
I'm creating a basic database application in WPF, and I have started using the
I am working on a wpf application and i have to implement inline editing
I have a working WPF application. I would like to see it running as
I am building a multiuser WPF application (requirement is a desktop app), database SQL

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.