0

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

1 回答 1

-1

您可以按照官方文档了解如何使用 Prepared Statements 将数据插入表中。

尝试那里给出的示例几乎不需要一个小时。

希望能帮助到你。

于 2013-11-04T16:59:10.540 回答