gpt4 book ai didi

java - Play & Ebean - 获得第一条记录

转载 作者:可可西里 更新时间:2023-11-01 07:13:23 25 4
gpt4 key购买 nike

如何使用 play.db.ebean.Model.Finder 获取数据库中表的第一条记录,就像“first”方法一样。相应的 SQL 是:

SELECT * FROM my_table LIMIT 1;

最佳答案

让我们假设模型 Student

@Entity
public class Student{

@Id
public int id;

public String name;
}

模型查找器将是

public static Finder<Long,Student> find = new Finder(Long.class, Student.class);

以 1 为单位检索学生限制

public static Student getStudent()
{
// Use setMaxRows(limit_by)
return find.setMaxRows(1).findUnique();
}

关于java - Play & Ebean - 获得第一条记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26931787/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com