sql连接c#中的字符串

sql连接c#中的字符串

本文介绍了sql连接c#中的字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,

我有一个sql连接字符串,在我的笔记本电脑上运行本地数据库,我的问题是有一种方法可以动态设置连接字符串,这样当我运行我的项目时另一台能够访问数据库的计算机?



我的连接sting当前设置为:

 SqlConnection sc = new SqlConnection(@Data Source = .\SQLEXPRESS; AttachDbFilename = C:\Users\Abraham \ Files \ Visual Studio 2010 \Projects \ My Form Project \ ApplicationApporm \ ApplicationForm \DetailsDatabase.mdf ; Integrated Security = True; User Instance = True); 
解决方案

Hi guy,
I have a sql connection string that runs a local database on my laptop, my problem is there a way I could set the connection string dynamically so that when i run my project from a different computer to able to access the database?

my connection sting currently set as :

SqlConnection sc = new SqlConnection(@"Data Source=.\SQLEXPRESS;AttachDbFilename=C:\Users\Abraham\Documents\Visual Studio 2010\Projects\My Form Project\ApplicationForm\ApplicationForm\DetailsDatabase.mdf;Integrated Security=True;User Instance=True");
解决方案


这篇关于sql连接c#中的字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-26 05:46