欢迎来到天天文库
浏览记录
ID:44229342
大小:90.93 KB
页数:6页
时间:2019-10-19
《C#连接数据库方法总结》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、-:C#连接SQL数据库DataSource=myServerAddress;lnitialCatalog=myDataBase;Userld=myUsername;Password=myPassword;DataSource=190.190.200.100,1433;NetworkLibrary=DBMSSOCN;lnitialCatalog=myDataBase;UserID=myUsername;Password=myPassword;Server=myServerAddress;Database=myDataBase;User
2、ID=myUsername;Password=myPassword;Trusted_Connection=False;Server=myServerAddress;Database=myDataBase;Trusted_Connection=True;Server=myServerNamethelnstanceNameQatabase二myDataBase;Trusted_Connection=True;DataSource=myServerAddress;lnitialCatalog=myDataBase;IntegratedSe
3、curity=SSPI;1:IntegratedSecurity参数当设置IntegratedSecurity为True的时候,连接语句前面的UserID,PW是不起作用的,即采用windows身份验证模式。只有设置为False或省略该项的时候,才按照UserID,PW來连接。IntegratedSecurity还可以设置为:sspi,相当于True,建议用这个代替TrueoDataSource=myServerAddress;lnitialCatalog=myDataBase;lintegratedSecurity=SSPI;Dat
4、aSource=myServerAddress;lnitialCatalog=myDataBase;IntegratedSecurity=true;DataSource=myServerAddress;lnitialCatalog=myDataBase;;UserID=myUsername;Password二myPasswordlntegratedSecurity=false;2:参数Trusted_ConnectionTrusted_Connection=true,将使用当前的Windows帐户凭据进行身份验证Trusted_Con
5、nection=false;Server2000验证方式将不采用信任连接方式(也即不采用Windows验证方式),而改由SQLServer=myServerAddress;Database=myDataBase;UserID=myUsername;Password=myPassword;Trusted_Connection=false;Server二myServerAddress;Database二myDataBase;Trusted_Connection二True;3:InitialCatalog是你要连接的数据库的名字3:WINC
6、E连接DataSource=myServerAddress;lnitialCatalog=myDataBase;IintegratedSecurity=SSPI;UserID=myDomainmyUsername;Password=myPassword;二:可以利用SqlConnectionStringBuilder,这样不必去记住名称。SqlConnectionStringBuilderscsb=newSqlConnectionStringBuilder();scsb.DataSource=@”(local)SQLExpress
7、”;scsb」ntegratedSecurity=true;scsb.lnitialCatalog="Northwind";SqlConnectionmyConnection=newSqlConnection(scsb.ConnectionString);三:可以利用属性中的Setting来自动设置连接字符串1:在type中选择(connectionstring),2:在DataSouce中选择数据源,然后徐rver中输入服务器名,本地用(local)SQLExpress3:选择登陆验证方式,本次选Windows验证(即信洼接Int
8、egratedSecurity=True)4:选择数据库名,确认即可DataSource=(local)SQLExpress;lnitialCatalog=Northwind;lntegratedSecurity=Tr
此文档下载收益归作者所有