Devi inserire il tuo codice all'interno di un metodo. Prova questo, quindi "esegui" la tua classe:
public class SQL {
public static void main(String[] args) throws SQLException {
Connection con = DriverManager.getConnection("jdbc:mysql://instance23389.db.xeround.com:15296/Inventory","user","password");
PreparedStatement Statement = con.prepareStatement("Select * from name");
ResultSet result = Statement.executeQuery();
while(result.next()) {
// do something with the row
}
}
}
Se codifichi un metodo principale come questo (static
, con void
tipo restituito e una String[]
parametro), puoi quindi "eseguire" la tua classe.
Nota che la linea
Class.forName("com.mysql.jdbc.Driver");
è del tutto superfluo:il driver verrà caricato quando tenti di aprire la connessione.