Here you can find the source of getDatabaseMetaData(Connection con)
public static DatabaseMetaData getDatabaseMetaData(Connection con) throws SQLException
//package com.java2s; //License from project: Apache License import java.sql.*; public class Main { public static DatabaseMetaData getDatabaseMetaData(Connection con) throws SQLException { return con.getMetaData(); }//from w w w .ja v a2s.c o m }