Hi all:
I have designed a backend application to update our catalogue. Everything works fine, except lately we've changed part of the structure so I need to re-write part of the app.
I have a
Products(ProductID, Name, Price, Description)
Categories(CatID, Name, Description)
CategorizedPrices(ProductID,CatID)
The purpose of CategorizedPrices table is that we can have a product going into many different categories.
My problem:
I need to create an interface that allows for insert/update/delete any given product from the CategorizedPrices table.
I guess I need to use arrays or a for loop, but I'm stuck!
I'm only stuck with this part. Everything else like inserting/deleting/updating products and categories into db works like a charm. 😃
Any suggetions?