朋友们,我需要帮助查询使用java检查表中是否已经存在特定数据。如果存在,我将创建插入语句来添加数据。
提前致谢。
像这样的东西。
private static Connection connection; // fill up connection with a database connection...
PreparedStatement pr = connection.prepareStatement("select ? from dual");
pr.setString(1,"whatever");
ResultSet rs = pr.executeQuery();
while(rs.next())
{
String temp = "checker";
if(temp.equals(rs.getString("Column_Name"))
{
//do something
}
}