2015-04-23 38 views
0

我使用糖ORM和工作,我要刪除所有,我使用的表,但不工作,不顯示在日誌文件中的任何錯誤:批量操作不會對糖ORM

這裏是我的MODELE:

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; 
} 

和COMMANDE:

Society.deleteAll(Society.class); 
+0

你可以包括你的模型'class'一部分?你給我的內部,但重要的是看到整個類的聲明。 – huu

回答

0

要進行批量刪除,你必須實例化類,並選擇該記錄刪除。如果你想刪除所有,它看起來是這樣的:

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

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