Exports the ItemSetSpell WoW DB2 table as a data library.
It contains no UI — it only loads the ItemSetSpell table data for the current client build and locale. Use it on its own, or together with the WoWDb core addon for added convenience.
Usage
Standalone (works by default)
Each WoWDb data addon is self-contained and exposes a built-in accessor — no core addon required. Just read the table directly:
local payload = WoWDb:GetTable("ItemSetSpell")
-- payload = { columns = {...}, rows = {...}, build = "...", locale = "..." }
local rows = WoWDb:GetRows("ItemSetSpell")
Via the WoWDb core addon (optional convenience)
Install the WoWDb core addon to get a richer lookup API (:Get, :Rows, :GetByID, :GetColumns, :ListTables, …) shared across every WoWDb table, plus easy installation of the whole data set. The same call still works:
local row, columns = WoWDb:GetByID("ItemSetSpell", 1)