Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
それは非常に単純だと思いますが、ドキュメントには単純なものは何も見つかりません。
JOOQを使用してIDごとに1つのエントリ(レコード)を取得するのはどの程度最適ですか?
レコードの作成のようなもの:
factory.newRecord(MY_TABLE);
また
MyTableRecord record = factory.selectRecord(MY_TABLE.ID.like(id));
私は使用selectFromし、fetchOne
selectFrom
fetchOne
PersonRecord record = factory.selectFrom(PERSON). where(PERSON.UUID.equal(uuid)).fetchOne();