実際には次のことを行う必要があります:
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 /