Hi,
I have a TableView who display the name of some Categories by executing this simple query
"select * from category" so my object contain id_category and name.
When I click on a row, a new tableView will display somes names inside thoses different categories.
"Select * from fiche_Category where id_category = ?"
My only problem is I don't know how to retrieve the id_category from every cell and insert it inside my ? on my second query.
I just want to be able to display the fiche_category from the category I choose.
Best Regards,