Module:Database report/preload

From Wikipedia, the free encyclopedia
This is the current revision of this page, as edited by imported>SD0001 at 09:48, 6 September 2025 (create preload for inputbox). The present address (URL) is a permanent link to this version.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
local Report = require('Module:Database report')

local p = {}

p.main = function()
	local report = Report:new()
	
	report:setSQL('...WRITE YOUR SQL HERE...')
	

	return report:generate()
end 

return p