aintaro Posted May 1, 2014 Share Posted May 1, 2014 Hello guys, How do I retrieve certain information from a certain column in a table with sql? thanks in advance, greetz Aintaro Link to comment
Markeloff Posted May 1, 2014 Share Posted May 1, 2014 local connection = nil function query( ... ) if connection then local qh = dbQuery( connection, ... ) local result = dbPoll( qh, -1 ) return result else return false end end function querySingle( str, ... ) if connection then local result = query( str, ... ) if type(result) == 'table' then return result[1] end return result else return false end end I hope it helps. Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now