コードをメソッド内に配置する必要があります。これを試してから、クラスを「実行」してください:
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
}
}
}
このようなメインメソッドをコーディングする場合(static
、void
タイプとString[]
を返します パラメータ)、クラスを「実行」できます。
行に注意してください
Class.forName("com.mysql.jdbc.Driver");
完全に不要です。接続を開こうとすると、ドライバーがロードされます。