sql >> データベース >  >> RDS >> Mysql

JavaMySQLとArrayListsの統合

    コードをメソッド内に配置する必要があります。これを試してから、クラスを「実行」してください:

    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
            }
        }
    }
    

    このようなメインメソッドをコーディングする場合(staticvoid タイプとString[]を返します パラメータ)、クラスを「実行」できます。

    行に注意してください

    Class.forName("com.mysql.jdbc.Driver");
    

    完全に不要です。接続を開こうとすると、ドライバーがロードされます。



    1. SQLクエリ、各グループで最新の5つを選択

    2. MySQLクエリをCodeigniter構文に変換する

    3. PostgreSQLのクラウドバックアップオプション

    4. MySQL 8で列統計を永続的に無効にする方法は?