Row で select した情報の扱いについて #998
-
目的: Row で select した情報から、各値を取り出す方法について知りたい相談内容いつも大変お世話になっております。 Criteria API を使用した SQL の構築時、取得したい情報の数が 10 以上である場合には
|
Beta Was this translation helpful? Give feedback.
Answered by
nakamura-to
Oct 23, 2023
Replies: 1 comment 3 replies
-
Employee_ e = new Employee_();
List<Row> list =
nativeSql
.from(e)
.orderBy(c -> c.asc(e.employeeId))
.select(e.employeeId, e.employeeName, e.employeeNo, ... 略 ...)
.fetch();
for (Row row : list) {
int id = row.get(e.employeeId);
String name = row.get(e.employeeName);
} |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
ironclad-15256304
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Row
のget
メソッドを使って値を取得できます。