[Question]

03/04/2012 18:20 Murik13#1
Where get Id Of Item Which want add in item mall?
03/04/2012 18:51 [Dev]Ansem#2
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:08 Murik13#3
How Fast Search in sql?
03/04/2012 19:24 JohnHeatz#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.