Best way to set strongly typed dataset connection string at runtime?

后端 未结 7 1658
孤街浪徒
孤街浪徒 2021-02-20 01:19

My Windows Forms application uses a strongly typed dataset created using the designer in Visual Studio. At runtime I would like to be able to select either the live or test data

相关标签:
7条回答
  • 2021-02-20 01:54

    By default the Connection property is set to be internal. This can be changed in the DataSet's designer.

    1. Right-click the TableAdapter.

    1. Then change the ConnectionModifier property to public.

    1. You can now access the Connection property in your project.
    var loginsTableAdapter = new MyDataSetTableAdapters.LoginsTableAdapter();
    loginsTableAdapter.Connection.ConnectionString = _myConnectionString;
    
    0 讨论(0)
  • 2021-02-20 02:04

    Using the TableAdapterManager might work for you. Please read more at: http://rajmsdn.wordpress.com/2009/12/09/strongly-typed-dataset-connection-string/

    0 讨论(0)
  • 2021-02-20 02:11

    Connection property in TableAdapters is defined as internal.

    internal global::System.Data.SqlClient.SqlConnection Connection
    

    So in case your TypedDataset is not in the same assembly as your main windows forms app, you will not be able to access Connection property. This problem might popup later when you refactor your dataset code and move it into a seperate project which will produce its own independant assembly.

    To solve this problem, you can do as mentioned below.

    create partial class for your TableAdapter and add another constructor beside the default public parameterless constructor. Assuming TableAdapter type as MyTableAdapter

    public partial class MyTableAdapter
    {
        public MyTableAdapter(SqlConnection connection)
        {
            thisSetConnection(connection);
            this.ClearBeforeFill = true;
        }
    
        public void SetConnection(SqlConnection connection)
        {
            this._connection = connection;
        }
    }
    

    You will need to do this for as many as TableAdapters you have in your project. TableAdapter does not have any common base class but thanks that they are declared as partial classes so we are able to do it the way mentioned above.

    Now at runtime, you can create an instance of your TableAdapter like this..

    SqlConnection connection;
    //create the connection here at runtime..
    MyTableAdapter adapter = new MyTableAdapter(connection);
    

    or may be even assign it later after you create the TableAdapter instance with default parameterless public constructor..

    SqlConnection connection;
    //create the connection here at runtime..
    MyTableAdapter adapter = new MyTableAdapter();
    adapter.SetConnection(connection);
    
    0 讨论(0)
  • 2021-02-20 02:12

    Store connection strings for them both in an app.config and then you can switch based on a command line / start up switch. Or if you want to give the user the flexibility you could give them an options page where they can select which connection to use.

    Below is the code to read a start-up switch:

    string[] args = Environment.GetCommandLineArgs();
    // The first (0 index) commandline argument is the exe path.
    if (args.Length > 1)
    {
        if (Array.IndexOf(args, "/live") != -1)
        {
            // connection string = 
            // ConfigurationSettings.AppSettings["LiveConString"];
        }
    }
    else
    {
        // connection string = 
        // ConfigurationSettings.AppSettings["TestConString"];
    }
    

    So now you start your app by calling:

    MyApp.exe /live
    

    Using MyApp.exe alone or with any other switch will get you the test configuration.

    0 讨论(0)
  • 2021-02-20 02:15

    It's a pain to edit the designer file.

    I created a Settings entry under "User' called 'ConnectionString', which makes Visual Studio create an application string 'Connection String1' when you add a strongly typed data set.

    So, I just replace all 'ConnectionString1' with 'ConnectionString' in the dataset designer file, and that will allow you to use a 'User' string setting to load your connection string at runtime.

    IMHO it's a shortcoming allowing users to modify connection strings at runtime. (Anyone listening in Redmond?)

    0 讨论(0)
  • 2021-02-20 02:20

    Best Solution I have found so far:

    Add another program setting which holds your preffered connection string as set by the client at runtime (eg. newConnectionString)

    then before using the Table Adapter:

    this.myTableAdapter.Connection.ConnectionString = Properties.Settings.Default.newConnectionString;
    
    0 讨论(0)
提交回复
热议问题