3

我现在开始使用包 java.sql 并且我正在用它做一些实验。

我有这两张桌子

第一个是:

`user` (
`userID` INT NOT NULL AUTO_INCREMENT ,
`nickname` VARCHAR(20) NULL ,
PRIMARY KEY (`userID`) )

第二个是:

`club` (
`clubID` INT NOT NULL AUTO_INCREMENT ,
'clubName` VARCHAR(20) NOT NULL ,
`userID` INT NULL , 
PRIMARY KEY (`clubID`) ,...

其中 userID 是与第一个表的 userID 关联的外键。

这是应该解释我想要做什么的代码。(这仅适用于一个用户俱乐部)

Class.forName("com.mysql.jdbc.Driver");
this.connect = DriverManager.getConnection("jdbc:mysql://localhost/" + this.database + "?user=" + this.user + "&password=" + this.password);
String s;

s = ("insert into " + this.database + ".user (nickname) values (?)");
this.preparedStatement = this.connect.prepareStatement(s);
this.preparedStatement.setString(1, "username");
this.preparedStatement.executeUpdate();

s = ("SELECT userID from " + this.database + ".user where nickname = 'username'");
this.preparedStatement = this.connect.prepareStatement(s);
this.resultSet = this.preparedStatement.executeQuery();
int n=0;
while (resultSet.next())
{
    n = this.resultSet.getInt("userID");
}

s = ("insert into " + this.database + ".club (clubName, userID) values (?, ?)");
this.preparedStatement = this.connect.prepareStatement(s);
this.preparedStatement.setString(1, "club");
this.preparedStatement.setInt(2, n);
this.preparedStatement.executeUpdate();

如果我要为更多的情侣(用户名、俱乐部名)执行此过程,例如保存在 HashMap 中,我该如何使用preparedStatement 接口的addBatch() 方法?

我应该为每个动作使用三批:1 插入用户名 2 选择(和记录)用户 ID 3 插入与正确用户 ID 关联的俱乐部名称

或者我可以只在一批中包含所有过程??

还有一个问题,为什么如果我尝试删除围绕 resultSet.getInt() 方法的 while 循环,它会给我一个错误?

提前感谢所有愿意帮助我的人!

4

1 回答 1

2

您不能只在一个批次中包含所有过程。该批处理旨在用于单个查询。这是一个很好的例子的参考链接

您可以执行多个查询作为不同的批次,如下所示。

    try {
        DataSource dataSource = null;// specify data source
        Connection con = dataSource.getConnection();
        Statement s = con.createStatement();
        // or
        // PreparedStatement s =
        // con.prepareStatement("INSERT INTO profile (fullname) VALUES ('Visruth CV')");
        s.addBatch("INSERT INTO tran1 (username, password, profileid) VALUES ('visruth', 'password', 1)");
        s.addBatch("INSERT INTO testtab (name) VALUES ('testtab')");
        s.executeBatch();

    } catch (SQLException e) {
        e.printStackTrace();
    }

如果删除while (resultSet.next())循环,它将产生NullPointerExceptionresultSet ,因为光标在默认行中的当前位置,当您使resultSet.next()光标跳到下一行时,如果有可用行(从默认行到第一行,第一行到第二行等...),同时resultSet.next()将返回真(仅当它跳转时)否则为假。如果resultSet包含多于一行,则可以将其放在while 循环中,如果不只需要在那里使用if 条件

于 2013-02-06T11:16:57.677 回答