ection object.Connection newConn = new com.mysql.jdbc.Connection(host(props),port(props), props, database(props), url, this);Connection is an interface which is implemented by the providers class3)create a statement , and execute the query/* Create a statement*/Statement statement = connection.createStatement();String query = Select * from yourTABLE ;ResultSet rs = statement.executeQuery(query);