[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Newsgroup Home]
|
[news.eclipse.platform.swt] Re: Huge table, records, scrolling, etc.
|
"Mr. Burns" <Mr._Burns@xxxxxx> wrote in message
news:divl3o$ijo$1@xxxxxxxxxxxxxxxxxxx
> Hello Michael,
>
> thanks for the detailed information.
> But is that really true? Seems for me (I come from C++) very complicated
> to properly display data using JAVA. ... What is the right way to store
> the cache table data? Should I use a vector, or should I prefer a 2nd
> (unvisible) Table and TableItems where I cache the data, and if needed in
> the visible table, copy from the invisible table to the visible one?
Note that it has nothing to do with C++ or D++ or even E++!
In ANY virtual table, system needs to know the exact number of rows!
Then system asks rows to show on the table window.
It asks using *index numbers* so your exit module should supply rows
of that index! If your database table has that index number or row
identifier
as primary key or as index, then you can easily fetch rows on demand.
Otherwise, whether you use virtual or not, if you have to cache all inside
your system, you may be better off with standard tables.
Regards.
- References:
- [news.eclipse.platform.swt] Huge table, records, scrolling, etc.
- [news.eclipse.platform.swt] Re: Huge table, records, scrolling, etc.
- [news.eclipse.platform.swt] Re: Huge table, records, scrolling, etc.
- [news.eclipse.platform.swt] Re: Huge table, records, scrolling, etc.
- [news.eclipse.platform.swt] Re: Huge table, records, scrolling, etc.
- [news.eclipse.platform.swt] Re: Huge table, records, scrolling, etc.
- [news.eclipse.platform.swt] Re: Huge table, records, scrolling, etc.
- [news.eclipse.platform.swt] Re: Huge table, records, scrolling, etc.
- [news.eclipse.platform.swt] Re: Huge table, records, scrolling, etc.