Java Profiler 9.0 (EAP) Help
Probes: extendable profiling and monitoring
Data storage
Tables, rows, columnsThis is a pre-release software documentation. It may be incomplete or not up-to-date.
Conceptually, the storage is based on the relation database model.
The information is stored in tables.
Each table has fixed number of columns and arbitrary number of rows.
Each column can store values of particular type, which is specified on table creation.
Supported types are: int, long, String.
Also, column can refer to particular row in another table;
such columns are called foreign keys.
Each column has a name which is a free form text describing column content when table data is presented to user.
The number of columns, their types and names are specified on table creation and cannot be changed afterwards.
Each row stores information for all columns according to their data types.
When table is created, it contains no rows. New rows can be added and existing rows updated. Row removal is not supported.
Rows are numbered starting with 0. This number is called row index. The first created row in a table gets index 0, the second - index 1, etc.