我现在开始使用包 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 循环,它会给我一个错误?
提前感谢所有愿意帮助我的人!