SQL Server数据表数据转存至mongoDB中

 一、首先连接到sqlserver数据库,将需要转存的数据表中的列查询出来,存入到中

 二、连接到mongoDB

 三、将list中的数据循环取出,写入到mongoDB的集合中

List<StudentInfo> stuList = new List<StudentInfo>();
SqlConnection con = new SqlConnection();
con.ConnectionString = "server=.;database=DBNAME;uid=sa;pwd=PWD";
con.Open();
using (SqlCommand cmd = con.CreateCommand())
{
    cmd.CommandText = "select  name,data from [mongo] ";//SQL选择语句
    using (SqlDataReader reader = cmd.ExecuteReader())//执行sql语句
    {
         while (reader.Read())
         {
             StudentInfo stu = new StudentInfo();//实体类
             stu.name = reader["name"].ToString();
             stu.data = reader["data"].ToString()[0];
             stuList.Add(stu);
         }
     }
     string conn = "mongodb://localhost";
     string database = "mongotest";
     string collection = "mongo";
    // 连接数据库
     MongoServer mongodb = MongoServer.Create(conn); 
    // 选择数据库名
     MongoDatabase mongoDataBase = mongodb.GetDatabase(database); 
    // 选择集合,相当于表
     MongoCollection mongoCollection = mongoDataBase.GetCollection(collection); 
     mongodb.Connect();
     for (int i = 0; i < stuList.Count;i++ )
     {
          mongoModel he = new mongoModel();//实体类
          he.name = stuList[i].name;
          he.data = stuList[i].data;
          mongoCollection.Insert(he);//插入数据
     }
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值