C#数据库连接字符串
我想做一个数据库中要通过我们简单的窗体中的输入服务器名和密码就可以实验SA登录,可现在我采取的是三层架构的,在数据层的连接字符串,我怎么设置才能从窗体中的TEXTBOX的...
我想做一个数据库中要通过我们简单的窗体中的输入服务器名和密码就可以实验SA登录,可现在我采取的是三层架构的,在数据层的连接字符串,我怎么设置才能从窗体中的TEXTBOX的账号和密码TEXT值传到连接字符串的文件中,希望懂的人给我提点下,谢谢。
或者是有其他建议也可以。 展开
或者是有其他建议也可以。 展开
4个回答
展开全部
c#数据库连接字符串集合
(一)常用连接:
1.使用SqlConnection对象:
a. Sql 验证
public void SqlConnectionOpen()
{
SqlConnection conn= new SqlConnection();
conn.ConnectionString = "user id=sa;password=;initial catalog=northwind;datasource=localhost;connect Timeout=20";
conn.Open();
}
b. Windows 身份验证
public void SqlConnectionOpen()
{
SqlConnection conn= new SqlConnection();
conn.ConnectionString = "Integrated Security=SSPI;initial catalog=northwind;datasource=localhost;connect Timeout=20";
conn.Open();
}
2.使用OleDbConnection对象:
public void OleDBConnectionOpen()
{
OleDBConnection conn = new OleDbconnection();
conn.ConnectionString="Provider=Microsoft.Jet.OLEDB.4.0;DataSource=C:\Customer.mdb";
conn.Open();
}
(二)其它:
1.ODBC连接Access本地数据库
conGoodDay.Open("Driver={Microsoft Access Driver(*.mdb)};"+"Dbq=C:\a.mdb;"+
"Uid=Admin;"+"Pwd=;");
2.ODBC连接Access系统数据库
conGoodDay.Open("Driver={Microsoft Access Driver(*.mdb)};"+"Dbq=C:\a.mdb;"+
"SystemDB=Admin;"+"Pwd=;");
3.ODBC连接Access系统数据库
conGoodDay.Open("Driver={Microsoft Access Driver(*.mdb)};"+"Dbq=\\server\share\a.mdb;");
4.ODBC连接清宽Excel系统数据库
conGoodDay.Open("Driver={Microsoft Access Driver(*.xls)};"+"DriverId=790;"+
"Dbq=C:\a.xls;"+"DefaultDir=c:\somepath;");
5.ODBC连接Oracle系统数据库
conGoodDay.Open("Driver={Microsoft ODBC for oracle};"+"Server=OracleServer.world;"+
"Uid=Admin;"卜正态+"Pwd=password;");
6.ODBC连接Sql Servr
conGoodDay.Open("Driver={Sql Server};"+"Server=myServer;"+"Database=myDatabaseName;"
"Uid=Admin;"+"Pwd=password;");
7.ODBC连接Visual FoxPro
conGoodDay.Open("Driver={Microsoft Visual FoxPro Driver};"+
"SourceType=DBC;"+"SourceDB=c:a.dbc;"+"Exclusive=No;");
Windows 身份验证
建议使用 Windows 身份验证(有时也称为“集成安全性”)连接到支持其的数据源。连接字符串中使用的语法根据提供程序的不同而不同。下表演示用于 .NET Framework 数据提供程型源序的 Windows 身份验证语法。
语法
SqlClient
Integrated Security=true;
-- or --
Integrated Security=SSPI;
OleDb
Integrated Security=SSPI;
Odbc
Trusted_Connection=yes;
OracleClient
Integrated Security=yes;
Integrated Security=true 用于 OleDb 提供程序时会引发异常。
(一)常用连接:
1.使用SqlConnection对象:
a. Sql 验证
public void SqlConnectionOpen()
{
SqlConnection conn= new SqlConnection();
conn.ConnectionString = "user id=sa;password=;initial catalog=northwind;datasource=localhost;connect Timeout=20";
conn.Open();
}
b. Windows 身份验证
public void SqlConnectionOpen()
{
SqlConnection conn= new SqlConnection();
conn.ConnectionString = "Integrated Security=SSPI;initial catalog=northwind;datasource=localhost;connect Timeout=20";
conn.Open();
}
2.使用OleDbConnection对象:
public void OleDBConnectionOpen()
{
OleDBConnection conn = new OleDbconnection();
conn.ConnectionString="Provider=Microsoft.Jet.OLEDB.4.0;DataSource=C:\Customer.mdb";
conn.Open();
}
(二)其它:
1.ODBC连接Access本地数据库
conGoodDay.Open("Driver={Microsoft Access Driver(*.mdb)};"+"Dbq=C:\a.mdb;"+
"Uid=Admin;"+"Pwd=;");
2.ODBC连接Access系统数据库
conGoodDay.Open("Driver={Microsoft Access Driver(*.mdb)};"+"Dbq=C:\a.mdb;"+
"SystemDB=Admin;"+"Pwd=;");
3.ODBC连接Access系统数据库
conGoodDay.Open("Driver={Microsoft Access Driver(*.mdb)};"+"Dbq=\\server\share\a.mdb;");
4.ODBC连接清宽Excel系统数据库
conGoodDay.Open("Driver={Microsoft Access Driver(*.xls)};"+"DriverId=790;"+
"Dbq=C:\a.xls;"+"DefaultDir=c:\somepath;");
5.ODBC连接Oracle系统数据库
conGoodDay.Open("Driver={Microsoft ODBC for oracle};"+"Server=OracleServer.world;"+
"Uid=Admin;"卜正态+"Pwd=password;");
6.ODBC连接Sql Servr
conGoodDay.Open("Driver={Sql Server};"+"Server=myServer;"+"Database=myDatabaseName;"
"Uid=Admin;"+"Pwd=password;");
7.ODBC连接Visual FoxPro
conGoodDay.Open("Driver={Microsoft Visual FoxPro Driver};"+
"SourceType=DBC;"+"SourceDB=c:a.dbc;"+"Exclusive=No;");
Windows 身份验证
建议使用 Windows 身份验证(有时也称为“集成安全性”)连接到支持其的数据源。连接字符串中使用的语法根据提供程序的不同而不同。下表演示用于 .NET Framework 数据提供程型源序的 Windows 身份验证语法。
语法
SqlClient
Integrated Security=true;
-- or --
Integrated Security=SSPI;
OleDb
Integrated Security=SSPI;
Odbc
Trusted_Connection=yes;
OracleClient
Integrated Security=yes;
Integrated Security=true 用于 OleDb 提供程序时会引发异常。
展开全部
Web.Config就是XML文件,用修改XML的方法来雹乱改源局档。
这是一个创建连接字串的例子:
StringBuilder sb2 = new StringBuilder();
sb2.Append( "data source= ");
sb2.Append(temp1);
sb2.Append( "; ");
sb2.Append( "initial catalog= ");
sb2.Append(temp2);
sb2.Append( ";persist security info=False; ");
sb2.Append( "user id= ");
sb2.Append(temp3);
sb2.Append( "; ");
sb2.Append( "pwd= ");
sb2.Append(temp4);
sb2.Append( ";packet size=4096 ");
StringBuilder xmlpath = new StringBuilder();
xmlpath.Append(filepath);
xmlpath.Append( "\\ ");
xmlpath.Append( "Web.config ");
XmlDocument doc = new XmlDocument();
doc.Load(xmlpath.ToString()); //加载Web.Config
XmlElement elem=doc.DocumentElement;
XmlElement newelem = doc.CreateElement ( "appSettings ");
XmlElement elem1 = doc.CreateElement( "add ");
XmlNodeList nodes = doc.SelectNodes( "/configuration/appSettings/add ");
//腊雹连接字符串赋值 foreach(XmlNode node in nodes)
{
switch (node.Attributes[ "key "].Value)
{
case "strConnection ":
node.Attributes[ "value "].Value = sb2.ToString();
break;
default:
// Don 't do anything
break;
}
}
doc.Save(xmlpath.ToString()); //保存修改
这是一个创建连接字串的例子:
StringBuilder sb2 = new StringBuilder();
sb2.Append( "data source= ");
sb2.Append(temp1);
sb2.Append( "; ");
sb2.Append( "initial catalog= ");
sb2.Append(temp2);
sb2.Append( ";persist security info=False; ");
sb2.Append( "user id= ");
sb2.Append(temp3);
sb2.Append( "; ");
sb2.Append( "pwd= ");
sb2.Append(temp4);
sb2.Append( ";packet size=4096 ");
StringBuilder xmlpath = new StringBuilder();
xmlpath.Append(filepath);
xmlpath.Append( "\\ ");
xmlpath.Append( "Web.config ");
XmlDocument doc = new XmlDocument();
doc.Load(xmlpath.ToString()); //加载Web.Config
XmlElement elem=doc.DocumentElement;
XmlElement newelem = doc.CreateElement ( "appSettings ");
XmlElement elem1 = doc.CreateElement( "add ");
XmlNodeList nodes = doc.SelectNodes( "/configuration/appSettings/add ");
//腊雹连接字符串赋值 foreach(XmlNode node in nodes)
{
switch (node.Attributes[ "key "].Value)
{
case "strConnection ":
node.Attributes[ "value "].Value = sb2.ToString();
break;
default:
// Don 't do anything
break;
}
}
doc.Save(xmlpath.ToString()); //保存修改
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
把正常数据库连接串 字符转义一下就可以了。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
下载一个sqlhelper.cs吧,不用连来连去,或者自己尝试写一个也好
追问
我就在写在sqlhelper.cs里面的,我现在想要从窗体中传递数据库的用户名和密码给sqlhelper的连接字符串的,可不知道要怎么实现的呢
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询