Guest User

Untitled

a guest
Oct 22nd, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. public OrderDAO(int id) {
  2. // DCWEB-1520: CursorWindowAllocationException due to unclosed cursors... One source below...
  3. this(DB.getInstance().QueryCursor("SELECT * FROM " + TAG_VIEW_NAME + " WHERE ID=?", id, true));
  4.  
  5. }
  6.  
  7. public OrderDAO(Cursor cursor) {
  8. super(cursor);
  9. if (cursor.getCount() > 0) {
  10. // ACRALYZER: Prevent DAOHelper.getIn
Add Comment
Please, Sign In to add comment