Does Android SQLite cursor load all records into memory at once? -
does android sqlite cursor load data query memory, or there sort of optimization strategy that's part of implementation?
a sqlitecursor
fills "window" data navigate through it. recollection window size 1mb, can't point specific code backs recollection. so, small queries, net effect sqlitecursor
hold entire result set in memory, once start accessing rows , columns.
Comments
Post a Comment