Thread: [Solved] [MySQL] Return function
View Single Post
Bugsy
AMX Mod X Moderator
Join Date: Feb 2005
Location: NJ, USA
Old 01-09-2022 , 11:40   Re: [MySQL] Return function
Reply With Quote #8

No, because immediately after calling SqlGetUserIndex(), you are expecting to have the return value from the threaded query. As HamletEagle said, the query is asynchronous, meaning you can think if it as being added to a queue and executed when resources are available. You cannot expect results to be immediately available.
PHP Code:
new VarTest[33]

public 
MyFunction(id)
{
    
// Query
    
SqlGetUserIndex(id)
}

public 
SqlGetUserIndex(id)
{
    
VarTest[id] = -1
    
    
new data[1]
    
data[0] = id
    
    SQL_ThreadQuery
(handle"_SqlGetUserIndex""SELECT id FROM users WHERE authid = 'STEAM_XXXXXXXX'"datasizeof(data))
}

public 
_SqlGetUserIndex(fail_stateHandle:queryerror[], error_codedata[], data_size)
{
    
// check fails, etc....
    
    
new id data[0]
    
    if(
SQL_NumResults(query))
    {
        
VarTest[id] = SQL_ReadResult(xQuery0)
    }
    else
    {
        
VarTest[id] = -1
        
//Do what you want here that you would do in your code above when the value = -1
    
}

__________________

Last edited by Bugsy; 01-09-2022 at 11:47.
Bugsy is offline