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

EclipseEEのSQLテーブルにデータを挿入する

    実際には次のことを行う必要があります:

    1)MySQLをインストールします(おそらくすでに完了しています)

    2)MySQL JDBCドライバーをダウンロードし、EclipseプロジェクトのCLASSPATHに含まれていることを確認します。

    3)JDBCを使用するようにプログラムを作成します。例(未テスト):

     private Connection connect = null;
     private Statement statement = null;
     try {
        Class.forName("com.mysql.jdbc.Driver");
        connect =
          DriverManager.getConnection("jdbc:mysql://localhost/xyz?"
              + "user=sqluser&password=sqluserpw");
          String query = "INSERT INTO records (id, time) VALUES (?, ?)";
          PreparedStatement preparedStmt = conn.prepareStatement(query);
          preparedStmt.setInt (1, null);
          preparedStmt.setDate (2, new java.util.Date());
          preparedStmt.executeUpdate();
        } catch (SQLException e) {
          ...
        }
    

    ここにいくつかの良いチュートリアルがあります:

    http://www.vogella.com/tutorials/MySQLJava/article.html

    http://www.mkyong.com/jdbc/ jdbc-preparestatement-example-insert-a-record /



    1. Ubuntu 20.10 /Ubuntu20.04にApacheCassandraをインストールする方法

    2. ランダムな日付で行を更新する方法

    3. パラメータとともに使用する場合にOR句の使用を最適化する方法(SQL Server 2008)

    4. 2つのSQLServerデータベースを比較するための無料のツールとは何ですか?