ok i forgot the function to search the DB in sql by the scrips name to find items any help would be nice tyvm
SELECT * FROM dbo.ItemResource ITEM, dbo.StringResource STRING where STRING.code=ITEM.name_id and STRING.value like '%searchterm%'
Quote:
Another way to list is:
SELECT ITEM.id, item.name_id, STRING.value
FROM Arcadia.dbo.ItemResource ITEM, Arcadia.dbo.StringResource STRING
WHERE item.name_id = string.code
ORDER BY id ASC
I actually posted these queries like half a year ago....
But with this method you have to go through about 20000 items and search for the correct one :DQuote:
Another way to list is:
SELECT ITEM.id, item.name_id, STRING.value
FROM Arcadia.dbo.ItemResource ITEM, Arcadia.dbo.StringResource STRING
WHERE item.name_id = string.code
ORDER BY id ASC
I actually posted these queries like half a year ago....
just below the WHERE statement, then you can search for specific item names....Quote:
AND value LIKE '%something%'