我编辑了这个问题。这是完整的代码。看看吧。
public class AddStaff extends Application {
private Connection connect = null;
private Statement statement = null;
private ResultSet rs = null;
private PreparedStatement preparedStatement = null;
TextField addSubName;
String msg;
private TableView<Staff> table = new TableView<Staff>();
private final ObservableList<Staff> data
= FXCollections.observableArrayList();
final HBox hb = new HBox();
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage stage) {
Scene scene = new Scene(new Group());
stage.setTitle("Add Staff");
stage.setWidth(450);
stage.setHeight(550);
stage.setResizable(false);
final Label label = new Label("Staff Details");
label.setFont(Font.font("Calibri", FontWeight.BOLD, 22));
label.setTextFill(Color.WHITE);
TableColumn sub = new TableColumn("Staff Name");
sub.setMinWidth(400);
sub.setCellValueFactory(
new PropertyValueFactory<Staff, String>("subName"));
sub.setCellFactory(TextFieldTableCell.forTableColumn());
sub.setOnEditCommit(
new EventHandler<TableColumn.CellEditEvent<Staff, String>>() {
@Override
public void handle(TableColumn.CellEditEvent<Staff, String> t) {
((Staff) t.getTableView().getItems().get(
t.getTablePosition().getRow())).setSubName(t.getNewValue());
}
}
);
table.setItems(data);
table.getColumns().addAll(sub);
addSubName = new TextField();
addSubName.setPromptText("Staff Name");
addSubName.setPrefSize(200, 30);
final Button b2 = new Button("Add");
b2.setFont(Font.font("Calibri", FontWeight.BOLD, 17));
b2.setPrefSize(70, 30);
b2.setStyle(" -fx-base: #0066ff;");
b2.setTextFill(Color.BLACK);
b2.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent e) {
msg = addSubName.getText();
try {
enterStaff();
} catch (ClassNotFoundException | SQLException ex) {
Logger.getLogger(AddStaff.class.getName()).log(Level.SEVERE, null, ex);
}
data.add(new Staff(addSubName.getText()));
addSubName.clear();
}
});
hb.getChildren().addAll(addSubName, b2);
hb.setSpacing(5);
final VBox vbox = new VBox();
vbox.setSpacing(10);
vbox.setPadding(new Insets(20, 20, 20, 20));
vbox.getChildren().addAll(label, table, hb);
vbox.setStyle("-fx-background-color: #333333;");
((Group) scene.getRoot()).getChildren().addAll(vbox);
stage.setScene(scene);
stage.show();
}
public void enterStaff() throws ClassNotFoundException, SQLException {
try {
Class.forName("com.mysql.jdbc.Driver");
connect = DriverManager
.getConnection("jdbc:mysql://localhost:3306/project?"
+ "user=root&password=virus");
statement = connect.createStatement();
preparedStatement = connect
.prepareStatement("SELECT count(*)FROM information_schema.tables\n"
+ "WHERE table_schema = 'project' AND table_name = 'staff'");
rs = preparedStatement.executeQuery();
rs.next();
int chk = rs.getInt(1);
if (chk != 1) {
preparedStatement = connect
.prepareStatement("create table staff (staffname varchar(30) primary key");
preparedStatement.executeUpdate();
}
preparedStatement = connect
.prepareStatement("insert into staff values(?)");
preparedStatement.setString(1, msg);
preparedStatement.executeUpdate();
} catch (ClassNotFoundException | SQLException e) {
throw e;
} finally {
close2();
}
}
private void close2() {
try {
if (statement != null) {
statement.close();
}
if (connect != null) {
connect.close();
}
} catch (SQLException e) {
}
}
}
此代码产生异常 -
com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Duplicate entry '' for key 'PRIMARY'
我不知道为什么会发生这种异常。我试了很长时间来纠正它。我该如何避免这种例外?
我之前问过这个问题。看一下 - com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Duplicate entry '' for key 'PRIMARY'答案 0 :(得分:4)
我不认为它是您的代码,但您正在尝试将具有相同主键的条目插入数据库。
Duplicate entry '' for key 'PRIMARY'
这意味着您要插入的项目有''
(null)作为pirmary键,并且您已经使用此键插入了一个项目。
问题可能是您正在创建表,但它已经存在于上一次运行中。在创建新表时,请先尝试DROP
。
答案 1 :(得分:2)
代码中没有问题,但是您在数据库中插入违反主键约束的值。
答案 2 :(得分:1)
Duplicate entry '' for key 'PRIMARY'
清楚地说明您正在尝试将重复的empaty字符串输入主要字段staffname
。
create table staff (staffname varchar(30) primary key
stuffname
字段是主键。我假设变量msg
是一个空字符串,你试图运行你的代码两次。
enterStaff(addSubName.getText());
...
public void enterStaff(String stuffName){
if(stuffName!=null && !stuffName.trim().isEmpty()){
...
}
}
答案 3 :(得分:1)
Duplicate entry '' for key 'PRIMARY'
异常说,您正在尝试插入已存在于表中的主键值。
preparedStatement.setString(1, msg);
您正在尝试插入msg
,null
可能是因为Duplicate entry ''
表格中的例外staff
已经存在,而您的列staffname
已经存在具有主键约束,因此它不允许您插入重复值。
修改:
编辑后异常原因相同。 但是,您可以改进代码设计。
将msg作为enterstaff
方法
enterstaff(String msg)...
并在调用方法
之前检查msg
是否不是null
if ( null != msg && !msg.trim().equals(""))
{
enterstaff(msg);
}
答案 4 :(得分:0)
我解决了。我只是将员工的名字改为用户名。现在没有例外,一切正常。