springjdbc+mysql判斷數據庫以及數據庫表是否存在

最近使用Springjdbc+Mysql來開發一個項目,記錄兩個問題。java

  1. 判斷數據庫是否存在sql

   方法1:使用原生Mysql語句,use database方式,並執行,根據執行結果是否出現異常來判斷數據庫是否存在,代碼以下數據庫

public boolean isDbExist(String dbName) {
		try {
			String sql = "USE "+dbName;
			jdbcTemplate.execute(sql);
			return true;		
		} catch (Exception e) {
			System.out.println("數據庫不存在");	
			return false;
		}			
	}

    方法2:使用創建數據庫鏈接的方法來判斷,也是根據是否出現異常,可是此方法若是是多數據源的話須要反覆切換數據源,不是很方便code

public boolean isDbExist(String dbName) {
		Connection conn = null;
		try {
			conn = jdbcTemplate.getDataSource().getConnection();
			return true;		
		} catch (Exception e) {
			System.out.println("數據庫不存在");			
		}finally{
			try {
				conn.close();
			} catch (SQLException e) {
				e.printStackTrace();
			}			
		}		
		return false;
	}


   2.判斷數據庫的某個表是否存在開發

方法比較常規,就是根據表名查詢一下,看看是否有記錄,有記錄即表存在,不然不存在get

public boolean isTableExist(String tableName) {
		Connection conn = null;
		ResultSet rs = null;
		try {
			conn = jdbcTemplate.getDataSource().getConnection();
			rs = null;
			DatabaseMetaData data = conn.getMetaData();
			String[] types = {"TABLE"};
			rs = data.getTables(null, null, tableName, types);
			if(rs.next()){
				return true;
			}			
		} catch (Exception e) {
			e.printStackTrace();
		}finally{
			try {
				rs.close();
				conn.close();
			} catch (SQLException e) {
				e.printStackTrace();
			}			
		}
		
		return false;
	}
相關文章
相關標籤/搜索