Musisz umieścić swój kod w metodzie. Spróbuj tego, a następnie „uruchom” swoją klasę:
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
}
}
}
Jeśli kodujesz główną metodę taką jak ta (static
, z void
zwracany typ i String[]
parametr), możesz następnie "uruchomić" swoją klasę.
Zauważ, że linia
Class.forName("com.mysql.jdbc.Driver");
jest całkowicie niepotrzebne:sterownik zostanie załadowany, gdy spróbujesz otworzyć połączenie.