How to uplaod an Excel file(xls) from desktop and save the data in the database sqlite using flutter windows
this is my table
CREATE TABLE "products" (
"product_id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT ,
"product_name" TEXT NOT NULL ,
"product_price" REAL NOT NULL,
"price_cost" REAL NOT NULL,
"product_quantity" INTEGER,
);
uplaod an Excel file(xls) and save the data in the database sqlite