Let's imagine I have two processes A and B performing transactions on a H2 database table T.
Process A performs CRUD (Create, Read, Update, Delete) on T.
Process B wants to know when line L in T has been last modified (i.e., B provides a System.currentTimeMillis() value for example).
One could create a column in T registering the last modification moment for each line, but I was wondering whether H2 was already holding this information somewhere and whether it can be accessed.