you will find the item ID's in your database on the Ps_GameDefs.dbo.Items table.
just copy that code from the item you want and add it to your ProductList table.
03/04/2012 19:08Murik13#3
How Fast Search in sql?
03/04/2012 19:24JohnHeatz#4
Code:
Select ID, ItemName from dbo.Items
where ItemName like '%name%'
03/04/2012 20:08[Dev]Ansem#5
yeah do it like JohnHeatz said and create some queries to find them.
You could also use something like RazorSQL, some programms have a search function integrated.