使用Web Service从数据库中检索数据

时间:2011-04-26 23:13:36

标签: java web-services oracle netbeans

我有一个问题,我是新手。我知道如何创建从数据库插入和删除的Web方法,但我不知道如何从数据库中获取内容。我想我必须将查询的结果传递给字符串,然后返回此字符串以获得我想要的。我有以下不完整的代码。

@WebMethod(operationName = "getSomethingByID")
public String getSomethingByID(@WebParam(name = "idRocks")
String idRocks) {
    Dal dal = new Dal();
    ResultSet rs = dal.executeQuery("SELECT rocks FROM something WHERE idRocks ='" + idRocks+ "'");

        try
        {
            if(rs.next())
            {


            }
        }
        catch(Exception e)
        {
            System.out.println(e.getMessage());
        }

        return null;
}

如何从数据库中检索此信息?

感谢

1 个答案:

答案 0 :(得分:1)

你需要这样的东西:

String query = "SELECT rocks FROM something WHERE idSomething='" + idSomething+ "'";

Class.forName("com.mysql.jdbc.Driver").newInstance();
String url = "jdbc:mysql://localhost:3306";
Connection conn = DriverManager.getConnection(url, "root", "root");
Statement stmt = conn.createStatement();

ResultSet rs;
rs = stmt.executeQuery(query);

String result = "";

while (rs.next()) {
    //'col1' refers to the value in each row in a column called col1 in you table
    result += rs.getString("col1");
}

这只是将值合并为一个长字符串,然后您可以返回该值。

如果您使用这种方法,则需要导入JDBC Jar(假设它是您正在使用的MySQL数据库。)