首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > C# >

向Couchbase数据库里面添加数据时出有关问题,求解答呀!

2013-03-13 
向Couchbase数据库里面添加数据时出问题,求解答呀!!!//配置服务器CouchbaseClientConfiguration mbcc ne

向Couchbase数据库里面添加数据时出问题,求解答呀!!!
//配置服务器                                
                                CouchbaseClientConfiguration mbcc = new CouchbaseClientConfiguration();
                                //使用默认的数据库  
                                mbcc.Urls.Add(new Uri("http://10.10.10.37:8091/pools/default"));

                                //建立一个Client,装入Client的配置                              
                                
                                CouchbaseClient client = new CouchbaseClient(mbcc);
                                string str = "{"POIInfo":"" + pair.Value.Pguid.ToString() + "_" + (m++).ToString() + "_" + (n++).ToString() + "_" + ixx.ToString() + "","original":"" + poi.OriginalWord + "","
                                                + ""pguid":"" + poi.Pguid + "","originalpinyin":"" + poi.OriginalPinyin + "","originalfirstchar":"" + poi.OriginalFirstChar + "","type":"" + poi.Type + "","
                                                + ""longitude":"" + poi.Longitude + "","latitude":"" + poi.Latitude + "","areacode":"" + poi.AreaCode + "","poitype":"" + poi.POIType + "","typeboost":""
                                                + "" + poi.TypeBoost.ToString() + "","frequencyboost":"" + poi.FrequencyBoost.ToString() + "","name":"" + derive.DeriveName + "","derive":"" + entry.Replace(" ", "").Replace("|", " ").ToLower() + "","


                                                + ""pinyinderive":"" + entry.ToLower() + "","firstchar":"" + GetFirstChar(entry) + ""}";

                                var json =JsonConvert.DeserializeObject(str);

                                string output = JsonConvert.SerializeObject(json); 
                                //添加一条数据                                                                                         
                                bool b = client.Store(StoreMode.Add, "" + pair.Value.Pguid.ToString() + "_" + (suffix++).ToString() + "", output);
向数据库添加时,怎么一般都只添加到135条,然后其后面的添加不进去,然后再最后一天的时候又能添加进去????
[解决办法]
没用过 帮顶

热点排行