gpt4 book ai didi

java - ejb3 中的准备语句

转载 作者:行者123 更新时间:2023-11-29 09:26:11 26 4
gpt4 key购买 nike

我想使用带有 ejb3 的准备语句在 oracle 中插入数据。是否可以使用。

我试着在网上找一些例子,但我找不到任何好的例子。

请帮助我使用它。或者有没有其他方法可以在 ejb3 中使用参数查询(就像我们在准备好的语句中使用?)

感谢和问候

最佳答案

很简单:

public class YourEJB {

@Resource(mappedName="java:/DefaultDataSource")
DataSource dataSource;

// XXX: not handling exceptions
public void insertPerson(String name, String surname) {
Connection connection = dataSource.getConnection();
PreparedStatement insertPerson = connection.prepareStatement(
"INSERT INTO PEOPLE VALUES(?,?)");
insertPerson.setString(1, name);
insertPerson.setString(2, surname);
insertPerson.executeUpdate();
}

另请查看 JDBC tutorials .

关于java - ejb3 中的准备语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1248419/

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