我编写了一些C#代码来将数据存储到超级数据库中。但是我不知道如何更新数据。 以下是我的所作所为:
Hypertable b = new Hypertable();
b.Write("1", "value1");//this line is for writing to database
b.Write("1", "value111");//this line is for updating the value whose key = "1"
我的写功能是:
public override bool Write(string key, string value)
{
try
{
using (IContext context = Context.Create(connectionString))
using (IClient client = context.CreateClient())
{
using (INamespace ns = client.OpenNamespace("Test", OpenDispositions.OpenAlways | OpenDispositions.CreateIntermediate))
{
using (ITable table = ns.OpenTable(tableName))
{
using (ITableMutator mutator = table.CreateMutator())
{
Key _key = new Key { Row = key, ColumnFamily = "vvalue" };
mutator.Set(_key, Encoding.UTF8.GetBytes(value));
}
}
}
}
return true;
}
catch (Exception e)
{
Console.WriteLine("Hypertable--Write--{0}", e.Message);
return false;
}
}
所以我的更新只是使用相同的键但不同的值再次写入。但是在更新之后我会读取该键和值,它应该显示新的键和值(key =“1”和value =“value111”)但它没有,它只显示旧的键和值(key =“1”和value =“value1”)
我不知道为什么会这样。任何提示将不胜感激。感谢。
答案 0 :(得分:0)
您可以尝试将mutator.Flush()
添加到最里面的using
块,但是当mutator超出范围时应该自动调用它...