netbeans と mysql を使用して、ユーザーが Java を使用してデータを追加できるようにするテーブルを作成しました。たとえば、フィールド名を持つテーブル名クライアントに新しいクライアント名を追加する方法の例を誰かが教えてください。
これにより自動的に配置されますが、ユーザーが名前をテーブルに追加する必要があります
public static void insertClients() throws SQLException {
try {
Class.forName("com.mysql.jdbc.Driver").newInstance();
} catch (Exception E) {
System.err.println("Unable to load driver.");
E.printStackTrace();
}
try {
Connection con = DriverManager.getConnection(
"jdbc:mysql://localhost:3306/clients","root","pass");
con.setAutoCommit(false);
Statement statement = con.createStatement();
String newClient = "insert into client values(John);";
statement.executeUpdate(newName);
System.out.println("Client added");
con.commit();
con.close();