Overview

This JavaFX program provides a GUI for managing products (code, description, price) backed by a SQLite database. Features:

Product Manager Application Screenshot

Sample Code (ProductManagerApp.java)

public class ProductManagerApp extends Application {
    @Override
    public void start(Stage stage) {
        stage.setTitle("Product Manager Application");
        GridPane grid = new GridPane();
        grid.setAlignment(Pos.TOP_CENTER);
        grid.setPadding(new Insets(25));
        grid.setHgap(10);
        grid.setVgap(10);
        Scene scene = new Scene(grid, 480, 430);
        stage.setScene(scene);
        stage.show();
    }

    public static void main(String[] args) {
        launch(args);
    }
}