What is the data type in the database?
The problem is with REAL data type.
SQLite returns REAL numbers bigger than 999999 with scientific notation like:
123456 > 123456
1234567 > 1.23457e6
12345678 > 1.23457e7
As KMatle suggested, you should use a TEXT data type.
With TEXT or INTEGER data type the display is like you expect it.
With REAL
With TEXT or INTEGER
@Mahares
Makumbi is not using the Table class but a HTML table in a WebView.