Jump to content

Quest Gm's Online Sencilla


pepineitor

Recommended Posts

Añades al final de cada archivo

--Quest Fuctions

mysql_query

QuestLib

mysql_query = function(query)
    if not pre then
	    local rt = io.open('CONFIG','r'):read('*all')
	    pre,_= string.gsub(rt,'.+PLAYER_SQL:%s(%S+)%s(%S+)%s(%S+)%s(%S+).+','-h%1 -u%2 -p%3 -D%4')
    end
    math.randomseed(os.time())
    local fi,t,out = 'mysql_data_'..math.random(10^9)+math.random(2^4,2^10),{},{}
    os.execute('mysql '..pre..' --e='..string.format('%q',query)..' > '..fi) -- für MySQL51
    -- os.execute('mysql '..pre..' -e'..string.format('%q',query)..' > '..fi) -- für MySQL55
    for av in io.open(fi,'r'):lines() do table.insert(t,split(av,'t')) end; os.remove(fi);
    for i = 2, table.getn(t) do table.foreach(t[i],function(a,b)
	    out[i-1]			   = out[i-1] or {}
	    out[i-1][a]		    = tonumber(b) or b or 'NULL'
	    out[t[1][a]]		   = out[t[1][a]] or {}
	    out[t[1][a]][i-1]	  = tonumber(b) or b or 'NULL'
    end) end
    return out
end
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...