Right now only literals work for checking result columns. ```java rs.getString(3); ``` It should be possible to use Constant Value Checker for code like ```java private static final int USERNAME_COLUMN = 3; public void select() { // ... rs.getString(3); } ```
Right now only literals work for checking result columns.
It should be possible to use Constant Value Checker for code like