데이터베이스 존재 여부를 확인하는 Java 코드:
public static boolean isExistDatabase(String database) { Connection conn = null; Statement stmt = null; ResultSet rs = null;// 数据库结果集 try { conn = getConnection(); stmt = conn.createStatement(); String sql = "SELECT COUNT(*) FROM information_schema.schemata WHERE schema_name=\"" + database + "\""; System.out.println(sql); rs = stmt.executeQuery(sql); if (rs.next()) { if (rs.getInt(1) == 0) { return false; } else { return true; } } return false; } catch (Exception e) { throw new TenantException(e.getMessage(), Status.INTERNAL_SERVER_ERROR); } finally { try { if (rs != null) { rs.close(); } if (stmt != null) { stmt.close(); } if (conn != null) { conn.close(); } } catch (SQLException e) { throw new TenantException("mysql关闭连接失败:" + e.getMessage(), Status.INTERNAL_SERVER_ERROR); } } }
주요 SQL 구문:
String sql = "SELECT COUNT(*) FROM information_schema.schemata WHERE schema_name=\"" + database + "\"";
자바에 대한 더 많은 지식을 알고 싶다면 java 기본 튜토리얼 칼럼을 주목하세요.
위 내용은 Java는 데이터베이스가 존재하는지 확인합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!