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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T08:28:04+00:00 2026-06-05T08:28:04+00:00

I want to change the dataset table adapter connection string at run time. Now

  • 0

I want to change the dataset table adapter connection string at run time. Now i have a code to change that connection string but it change the server name only not changing database name, username and passowrd. Please help me to fix this error..

This is my partial code :

   Properties.Settings.Default["testConnectionString"] = String.Format("server={0};Port={1}; database={2};User Id={3};password={4}", "172.23.2.32", "3306", "hrm", "root", "test123");

The above code only change the ip address and data inserted into database.But now am change the database name means data inserted into “hrm” database. Please help me to fix this …

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

    I conducted an experiment with properties and was able to get User settings to change just fine.

    Settings File

    enter image description here

    Notice that the difference between these two values is in the Scope. User settings can change at runtime. Application settings cannot change at runtime.

    Code

    class Program
    {
        static void Main(string[] args)
        {
            //Application Properties can not change. They are read only
            //Properties.Settings.Default.testConnectionStringApplication 
            //    = String.Format("server={0};Port={1}; database={2};User Id={3};password={4}", "172.23.2.32", "3306", "hrm", "root", "test123");
    
            //User Properties can change
            Properties.Settings.Default.testConnectionStringUser
                = String.Format("server={0};Port={1}; database={2};User Id={3};password={4}", "172.23.2.32", "3306", "hrm", "root", "test123");
    
            //Call Save to persist the settings. 
            Properties.Settings.Default.Save();
    
            Console.WriteLine(Properties.Settings.Default.testConnectionStringUser);
            Console.ReadLine(); 
        }
    }
    

    Output

    enter image description here

    Source

    How To: Write User Settings at Run Time with C#

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

Sidebar

Related Questions

I have the following code to convert my JSON dataset to html table. I
I want to change Mode of connectivity in Typed Dataset. But I can not
I want change following javascript code to jquery code, How is it? With done
i have many div's with the same background image and i want change this
I have one app in the store with CoreData model, and i want change
I want to change the color of all pixels in UIImage. This code successfuly
I have a dataset that I'm trying to chunk up into "events" based on
I've got a bunch of strongly typed DataSet that each have two tables. One
I have some code that runs fine when I have a web proxy defined
I want a strongly-typed DataSet along with designer TableAdapters, but Visual Studio's DataSet designer

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.