So I'm using Vaadin Java web framework for a project which requires the ability to edit the table. Vaadin provides a way to get Connection object from SimpleJDBCConnectionPool (Here's the API) From the Connection I can get DatabaseMetaData object. And I have the following code: private List<String> getTableNames(DatabaseMetaData md) throws SQLException { ArrayList<String> tables = new ArrayList<St