String writableConnection = string.Format("server={0};uid={1};pwd={2};Initial Catalog={3};Integrated Security=SSPI;", DBServerIP.Text, DBOwner.Text, DBOwenerPassWord.Text, DBName.Text);
这种貌似不行啊
http://www.connectionstrings.com/sql-server-2005
用逗号,比如 localhost,8888
server=IP,端口;database=数据库名;uid=用户名;pwd=密码;
,分割
1433 端口是sql默认的端口。如果你要改变端口,只是访问的时候就像你那样应该是不行的。
应该是在服务器上的sql网络配置哪里配置 访问端口号。
192.168.1.88:1455 类似这种格式吧 用冒号吧