发布项目时查询

This commit is contained in:
sjm
2023-07-09 10:43:26 +08:00
parent b57664e4ee
commit 2658676a5a

View File

@@ -70,6 +70,7 @@ public class githubDao {
String sql = "select * from githubinfo where projectId = ? and isValid = 1";
prep = conn.prepareStatement(sql);
prep.setInt(1, projectid);
rs = prep.executeQuery(sql);
while (rs.next()) {
rsmd = rs.getMetaData();
}