数据库ip:192.168.1.103
实例名:MSSQL
账号:sa
密码:123456][/b]
请问以下配置文件如何操作?
7 个解决方案
#1
实在不会就写死在代码里面嘛
#2
1.百度连接串格式,然后在此基础上改;
2或者新建个txt文档,将文档后缀改成udl,用oledb core service方式打开,然后按照界面去配置和测试,测试通过后双击文档,就得到一个可用的sql;
3.平时练习就算了,正式环境下要对连接串加密。
2或者新建个txt文档,将文档后缀改成udl,用oledb core service方式打开,然后按照界面去配置和测试,测试通过后双击文档,就得到一个可用的sql;
3.平时练习就算了,正式环境下要对连接串加密。
#3
我用的工具是Microsoft Visual Studio ,你说的是一个方法,但是具体写死在那个文件里我还是不清楚耶
#4
具体写在哪里我还是不清楚。
#5
跟普通的连接字符串一样
#6
你就仿你那个写啊,data source放ip,catalog放数据库名,user id是用户名,password是密码,百度搜搜也就有了啊
#7
Connect via an IP address:
"Provider=sqloledb;Data Source=190.190.200.100,1433;Network Library=DBMSSOCN;Initial Catalog=pubs;User ID=sa;Password=asdasd;"
(DBMSSOCN=TCP/IP instead of Named Pipes, at the end of the Data Source is the port to use (1433 is the default))
SqlConnection (.NET)
"Provider=sqloledb;Data Source=190.190.200.100,1433;Network Library=DBMSSOCN;Initial Catalog=pubs;User ID=sa;Password=asdasd;"
(DBMSSOCN=TCP/IP instead of Named Pipes, at the end of the Data Source is the port to use (1433 is the default))
SqlConnection (.NET)
#1
实在不会就写死在代码里面嘛
#2
1.百度连接串格式,然后在此基础上改;
2或者新建个txt文档,将文档后缀改成udl,用oledb core service方式打开,然后按照界面去配置和测试,测试通过后双击文档,就得到一个可用的sql;
3.平时练习就算了,正式环境下要对连接串加密。
2或者新建个txt文档,将文档后缀改成udl,用oledb core service方式打开,然后按照界面去配置和测试,测试通过后双击文档,就得到一个可用的sql;
3.平时练习就算了,正式环境下要对连接串加密。
#3
我用的工具是Microsoft Visual Studio ,你说的是一个方法,但是具体写死在那个文件里我还是不清楚耶
#4
具体写在哪里我还是不清楚。
#5
跟普通的连接字符串一样
#6
你就仿你那个写啊,data source放ip,catalog放数据库名,user id是用户名,password是密码,百度搜搜也就有了啊
#7
Connect via an IP address:
"Provider=sqloledb;Data Source=190.190.200.100,1433;Network Library=DBMSSOCN;Initial Catalog=pubs;User ID=sa;Password=asdasd;"
(DBMSSOCN=TCP/IP instead of Named Pipes, at the end of the Data Source is the port to use (1433 is the default))
SqlConnection (.NET)
"Provider=sqloledb;Data Source=190.190.200.100,1433;Network Library=DBMSSOCN;Initial Catalog=pubs;User ID=sa;Password=asdasd;"
(DBMSSOCN=TCP/IP instead of Named Pipes, at the end of the Data Source is the port to use (1433 is the default))
SqlConnection (.NET)