Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Session session = Main.getSession();
- session.beginTransaction();
- ProductsEntity productsEntity = new ProductsEntity();
- productsEntity.setName(nameTextField.getText());
- productsEntity.setDescription(descriptionTextArea.getText());
- productsEntity.setCategory((ProductCategoriesEntity) categoryComboBox.getSelectedItem());
- session.save(productsEntity);
- session.getTransaction().commit();
- session.close();
Advertisement
Add Comment
Please, Sign In to add comment