朋友们,我在查询时需要帮助,检查表中是否已经存在使用java的特定数据。如果它存在,我将使用insert语句添加数据。
提前致谢。
答案 0 :(得分:1)
像这样。
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
}
}