07.01.2011, 17:28
Hi,
I'm trying to solve this problem for hours already and just cannot seem to find the solution...
I'm trying to do Threaded mysql queries (using g-stylezzz plugin) and here's how it goes:
Thread are:
NC_T
and L_T
but for some reason L_T doesn't get called:
It was switch(resultid){ earlier but I changed it with if/else since I thought that's the problem..
If you think my queries are bad, they're not. They worked fine with another mysql plugin..
I'm trying to solve this problem for hours already and just cannot seem to find the solution...
I'm trying to do Threaded mysql queries (using g-stylezzz plugin) and here's how it goes:
Thread are:
NC_T
and L_T
but for some reason L_T doesn't get called:
pawn Код:
public OnQueryFinish(query[], resultid, extraid, connectionHandle)
{
printf("NC_T %i | L_T %i | Result: %i",NC_T,L_T,resultid);
if(resultid == NC_T)
{
print("NC_T called");
//This code works, it prints "NC_T 1 | L_T 2 | Result: 1" & "NC_T called" so that's ok
}
else if(resultid == L_T)
{
print("L_T called");
//This code DOES NOT work, it prints "NC_T 1 | L_T 2 | Result: 2" BUT NOT "L_T called" .. WHY???
}
If you think my queries are bad, they're not. They worked fine with another mysql plugin..