使用 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();