用于SQL-Lite的橱柜在一列上设置唯一字段

时间:2015-11-05 12:59:02

标签: android database sqlite unique

我正在使用Cupboard for android项目。该项目非常简单,但后来我需要在课堂上将一些字段设置为唯一列。

例如:

class book {
Long _id;
String name; // this name should be unique 
String auther;
}

我无法弄清楚如何做到这一点。

1 个答案:

答案 0 :(得分:1)