批量操作对Sugar ORM不起作用

时间:2015-04-23 09:58:18

标签: android sugarorm

我正在使用Sugar ORM并且我想要删除我使用的所有表格但不起作用且不会在日志文件中显示任何错误:

这是我的模式:

 private String name;
private String lastName;
private String imgSoc;
private Boolean follow;
private String adresse;
private String site;
private int numOffres;

public Society( String name, String lastName, 
        String imgSoc, Boolean follow, String adresse, String site,
        int numOffres) {


    this.name = name;
    this.lastName = lastName;
    this.imgSoc = imgSoc;
    this.follow = follow;
    this.adresse = adresse;
    this.site = site;
    this.numOffres = numOffres;
}

和指挥官:

   Society.deleteAll(Society.class);

1 个答案:

答案 0 :(得分:0)

要进行批量删除,您必须使用实例化类并选择要删除的记录。如果你想删除所有,它看起来像这样:

List<Society> items = Society.listAll(Society.class);
Society.deleteAll(Society.class);

原始文件:http://satyan.github.io/sugar/getting-started.html