gpt4 book ai didi

java - 使用 jdbctemplate 选择一个值

转载 作者:行者123 更新时间:2023-12-02 07:24:35 24 4
gpt4 key购买 nike

我是 Spring-jdbc 新手

我的查询如下:

select status from myTable where id = 10;

我想使用 spring jdbc 中提供的 JdbcTemplet 执行此查询并获取返回值并将其存储在变量中;

public class myClass extends JdbcDaoSupport
{
public void getstatus()
{
String sql = "select status from myTable where id = 10";
String Status = this.getJdbcTemplet().executeQuery(sql);
}
}

请建议使用 JdbcDaoSupport 执行此操作的正确方法

最佳答案

检查spring documentation ,它有类似的例子。

String lastName = this.jdbcTemplate.queryForObject(
"select last_name from t_actor where id = ?",
new Object[]{1212L}, String.class);

关于java - 使用 jdbctemplate 选择一个值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13722283/

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