Mysql
 sql >> Database >  >> RDS >> Mysql

come utilizzare un database MySql all'interno di Eclipse

Se hai bisogno di un esploratore di dati di qualche tipo all'interno di eclipse, puoi guardare i collegamenti forniti sopra o più specificamente la documentazione del plug-in.

OTOH, se vuoi sapere come ti connetti a un database mysql usando JDBC, l'esempio di codice seguente lo spiega.

Connection connection = null;
        try {
            //Loading the JDBC driver for MySql
            Class.forName("com.mysql.jdbc.Driver");

            //Getting a connection to the database. Change the URL parameters
            connection = DriverManager.getConnection("jdbc:mysql://Server/Schema", "username", "password");

            //Creating a statement object
            Statement stmt = connection.createStatement();

            //Executing the query and getting the result set
            ResultSet rs = stmt.executeQuery("select * from item");

            //Iterating the resultset and printing the 3rd column
            while (rs.next()) {
                System.out.println(rs.getString(3));
            }
            //close the resultset, statement and connection.
            rs.close();
            stmt.close();
            connection.close();
        } catch (SQLException e) {
            e.printStackTrace();
        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        }