我有一个基本上只有一个字符串变量的模型...我想编写一个函数来查询数据存储区中的所有元素...我该怎么办?此外,一旦我得到结果,我想在列表视图中显示获取的字符串..我是否去了这个???
我的课程定义如下:
import javax.jdo.annotations.PersistenceCapable;
import javax.jdo.annotations.Persistent;
import javax.jdo.annotations.PrimaryKey;
import javax.jdo.annotations.IdGeneratorStrategy;
import javax.jdo.annotations.IdentityType;
@PersistenceCapable(identityType = IdentityType.APPLICATION)
public class TrialDB {
@PrimaryKey
@Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
private Long key;
@Persistent
private String message;
//Accessor Methods etc follow
}
答案 0 :(得分:0)
也许您只是阅读Google文档 {{3P>