Databases: Verifiy database schema (with mysql)

Re: Databases: Verifiy database schema (with mysql)

by Jhony Gav -
Number of replies: 0
I'm not Sure but you can try this code for that i hope it's successful..

DatabaseMetaData
meta = conn.getMetaData();
ResultSet schemas = meta.getSchemas();
while(schemas.next()){
 
String tableSchema = schemas.getString(1);    // "TABLE_SCHEM"
 
String tableCatalog = schemas.getString(2);//"TABLE_CATALOG"
 
System.out.println("tableSchema"+tableSchema);
}

web programming services | Website Development