No announcements
Found 1248417 threads
-
1 Votes
Connectionstring at Runtime
I want to edit the connectionstrings section of the file to allow the user to store multiple connectionstring in the section.Answered | 4 Replies | 3169 Views | Created by LandsharkDaddy - Friday, December 4, 2009 12:14 AM | Last reply by Aland Li - Wednesday, December 9, 2009 8:23 AM -
0 Votes
How to change the ConnectionString of the remote database at Runtime
You change the connection settings to new remote database in the config files and app still syncs to old server/ database connection.Answered | 1 Replies | 12492 Views | Created by fswitz - Saturday, November 7, 2009 6:49 PM | Last reply by Jandeep - Tuesday, November 10, 2009 1:24 AM -
0 Votes
Editing an existing connectionstring with the DataConnectionDialog at runtime
To return the results of the dialog (i.e. the connectionstring) to a text box do the following: TextBox1.text = dcd.ConnectionString;Answered | 17 Replies | 15286 Views | Created by LanceM - Wednesday, May 3, 2006 1:46 AM | Last reply by Yaohai Zheng - Tuesday, February 2, 2010 6:13 AM -
2 Votes
ConnectionString |DataSource| change path
ConnectionString is:Answered | 10 Replies | 5138 Views | Created by FrenkyB - Saturday, June 21, 2008 9:51 AM | Last reply by FrenkyB - Thursday, June 26, 2008 12:59 PM -
0 Votes
Changing connectionstring area of app.config in vb.net
Hi, I need to change the connectionstring area of my aap.config file in vb.net.Answered | 1 Replies | 4813 Views | Created by Furqan Sehgal - Monday, February 6, 2012 7:37 AM | Last reply by joydemelo - Monday, February 6, 2012 9:54 AM -
1 Votes
Modify ConnectionString
From .NET 2.0, we have two kinds scope of config file, user scope which will change per user and application scope(i.e. app.config, which is readonly in the runtime).Answered | 12 Replies | 12639 Views | Created by Mike Hildner - Thursday, June 29, 2006 11:05 PM | Last reply by FilippoCSM - Tuesday, April 10, 2012 9:52 AM -
5 Votes
Modify ConnectionString in App.Config
At runtime, check if the file exists in the GetFolderPath().Answered | 16 Replies | 62826 Views | Created by MartinThwaites - Sunday, July 19, 2009 9:32 PM | Last reply by xuan tran - Friday, September 18, 2020 11:41 AM -
2 Votes
Change Entity connection string at runtime
You don't need the metadata on the connection string. something like below should work <connectionStrings> <add name="myEntities" ...Answered | 4 Replies | 6186 Views | Created by dcode25 - Wednesday, March 19, 2014 12:51 AM | Last reply by ange.fr - Wednesday, March 26, 2014 4:04 PM -
0 Votes
Change the connectionString
Hi Luis, You can change the connection string in the Publish wizard.Answered | 3 Replies | 2597 Views | Created by LuisMaRusso - Saturday, July 30, 2011 10:01 PM | Last reply by LuisMaRusso - Saturday, July 30, 2011 11:19 PM -
0 Votes
How to change connectionString when published
If you edit the file and change it, you need to use mageUI or mage to re-sign the manifest, which will re-calculate the hash values.Answered | 2 Replies | 2643 Views | Created by mrhammad - Friday, June 29, 2012 6:41 AM | Last reply by RobinDotNet - Wednesday, July 4, 2012 11:05 PM -
1 Votes
How to change connection string in app.config while runtime
sorry vladmir it working fine..i thought that its not changing in my application's app.config..it changed in my assemblyexe.config...thanks broAnswered | 8 Replies | 28852 Views | Created by bvpavanKumar - Monday, February 1, 2010 4:21 PM | Last reply by bvpavanKumar - Wednesday, February 10, 2010 11:07 AM -
1 Votes
Traverse all TableAdapter in xsd file & change connectionstring
Yea but it is very trouble full, You have to change the config file and by that create in fact an visible connectionstring if somebody has not secured his program ...Answered | 1 Replies | 2020 Views | Created by saurabh nawathe - Wednesday, September 28, 2011 4:47 AM | Last reply by Cor Ligthert - Wednesday, September 28, 2011 6:44 AM -
0 Votes
Changing Connection String in a DAL at runtime
What I really would like to do, is add some code to the Me.SettingsLoaded-event in the classlibrary and set the connection string at runtime.Answered | 1 Replies | 2819 Views | Created by ekenman - Friday, November 21, 2008 1:44 PM | Last reply by MSFT Johan Stenberg - Saturday, November 22, 2008 12:32 AM -
0 Votes
ConnectionString
Form1: public string getConnectionString() { string connectionString = "Data ...Answered | 2 Replies | 3496 Views | Created by Nitin Chaudhary MCPD - Saturday, April 25, 2009 6:06 PM | Last reply by Guo Surfer - Saturday, April 25, 2009 7:38 PM -
1 Votes
Not allowed to change the 'ConnectionString' property.
Are you assigning the connection string at runtime?Answered | 1 Replies | 16898 Views | Created by Santoor - Tuesday, October 16, 2012 5:56 PM | Last reply by Lingaraj Mishra - Wednesday, October 17, 2012 5:39 AM -
0 Votes
How to Change a Connectstring in runtime?
You can't change the connection string at runtime.Answered | 9 Replies | 2477 Views | Created by RientsNL - Friday, May 25, 2012 2:55 PM | Last reply by Manuel Rivera - Thursday, June 7, 2012 1:29 PM -
2 Votes
Change connection string at runtime
(a simple code for connection-string change and save in runtime.)Answered | 7 Replies | 4799 Views | Created by Sanping Li - Wednesday, December 2, 2009 6:50 AM | Last reply by Sanping Li - Wednesday, February 17, 2010 6:38 AM -
1 Votes
connectionstring
Sir i'm using this connection in my application to insert, update & delete data in database through datagridview. but using this connection SqlConnection con = new ...Answered | 8 Replies | 2488 Views | Created by santoshkmr - Saturday, January 7, 2012 2:53 PM | Last reply by san Sanz - Saturday, January 7, 2012 7:18 PM -
0 Votes
Change ContactSearchResultList Binding at runtime
Use it to bind to a different search input box at runtime.Answered | 1 Replies | 1935 Views | Created by Moritz O - Monday, February 4, 2013 11:17 AM | Last reply by John M. Austin - Monday, March 4, 2013 8:28 PM -
3 Votes
Change connection string on runtime
If you just want to change the underlying database connectionstring, I found that you can do that by changing the StoreConnection.ConnectionString, just like setting an ...Answered | 15 Replies | 25866 Views | Created by dcode25 - Thursday, September 1, 2011 11:44 PM | Last reply by Adi Unnithan - Friday, September 9, 2011 1:51 PM - Items 1 to 20 of 1248417 Next ›
No announcements