Java Code Examples for com.raizlabs.android.dbflow.sql.language.Delete#tables()
The following examples show how to use
com.raizlabs.android.dbflow.sql.language.Delete#tables() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: UserController.java From dhis2-android-dashboard with BSD 3-Clause "New" or "Revised" License | 6 votes |
public void logOut() { LastUpdatedManager.getInstance().delete(); DateTimeManager.getInstance().delete(); SessionManager.getInstance().delete(); // remove data Delete.tables( Dashboard.class, DashboardElement.class, DashboardItem.class, DashboardItemContent.class, Interpretation.class, InterpretationComment.class, InterpretationElement.class, User.class, UserAccount.class ); }
Example 2
Source File: ScroballDB.java From scroball with MIT License | 4 votes |
/** Clears all {@link Scrobble} and {@link PlaybackItem}s from the database. */ public void clear() { Delete.tables(ScrobbleLogEntry.class, PendingPlaybackItemEntry.class); }