进行网上搜的一些配置后,最重要不要忘记做映射:
建立号数据库后,用测试代码测试成功:
//使用SqlCommand执行数据操作
//使用SqlDataSet读取数据
//以下是完整源程序。
// linksqlserver 是工程名
using System;
using System.Collections.Generic;
using System.Text;
using System.Data; // 引入库文件
using System.Data.SqlClient; //引用名字空间
namespace linksqlserver
{
class Program
{
static void Main(string[] args) //main function
{
//构造数据库连接字符串
string connectString =
"Server = 公网ip,1433;" +
"Database = teaching;" +
"User ID = sa;" +
"Password = 密码"; //连接字符串
//创建数据库连接对象
SqlConnection conn = new SqlConnection(connectString);
//---------插入数据-------
Console.WriteLine("--插入数据--");
//student的结构sclass,snumb,sname,sgender,sage
string sql = "insert into stu " +
"values('化工','2006','张三')";
//打开数据库连接
conn.Open();
//创建SQL命令对象
SqlCommand comm = new SqlCommand();
comm.Connection = conn; //绑定连接对象
//绑定SQL语句
comm.CommandText = sql;
//执行SQL语句非查询语句,如插入,修改,删除等
try //异常处理
{
int count = comm.ExecuteNonQuery();
}
catch //捕获错误
{
Console.WriteLine("insert data failed.");
}
conn.Close(); //关闭连接
}
}
}
-
打开sql server配置管理器
2.选中左侧的“SQL Server服务”,确保右侧的“SQL Server”以及“SQL Server Browser”正在运行
3.左则选择sql server网络配置节点下的sqlexpress的协议,在右侧的TCP/IP默认是“否”,右键启用或者双击打开设置面板将其修改为“是”
4.选择“IP 地址”选项卡,设置TCP的端口为“1433”
5.将"客户端协议"的"TCP/IP"也修改为“Enabled”
配置完成,重新启动SQL Server 2008