Vice City: Multiplayer

Server Development => Scripting and Server Management => Topic started by: D4rkR420R on May 02, 2018, 10:54 PM

Title: Calling the next row of the query
Post by: D4rkR420R on May 02, 2018, 10:54 PM
Hello lovely Vice City Multiplayer community! Today, I'm here to request some help from this piece of code I'm suffering. My question is why won't the loop not move to the next row when I've already implemented GetSQLNextRow?

Here's the code:
local a = 0, b = 0, q = QuerySQL( clan, "SELECT Player FROM Members" );
while( GetSQLColumnData( q, 0 ) )
{
local c1 = QuerySQL( clan, "SELECT Tag, Player FROM Members WHERE Tag = '"+ GetTok( arguments, " ", 1 ) +"'" ), c2 = QuerySQL( clan, "SELECT Tag, Player FROM Members WHERE Tag = '"+ GetTok( arguments, " ", 2 ) +"'" );
if( GetSQLColumnData( c1, 1 ) ) a++;
if( GetSQLColumnData( c2, 1 ) ) b++;
GetSQLNextRow( q );
}

Note that the first and second arguments are the clan tags specified. Hopefully you'll help me and provide feedback. Thank you.
Title: Re: Calling the next row of the query
Post by: Mahmoud Tornado on May 03, 2018, 11:51 AM
I don't know but did you try to add?

FreeSQLQuery(q);
Title: Re: Calling the next row of the query
Post by: umar4911 on May 03, 2018, 12:54 PM
Try editing this and hope the problems solved. if not then tell me
q = QuerySQL( clan, "SELECT * FROM Members" );
Title: Re: Calling the next row of the query
Post by: D4rkR420R on May 03, 2018, 01:05 PM
Quote from: Mahmoud Tornado on May 03, 2018, 11:51 AMI don't know but did you try to add?

FreeSQLQuery(q);

Yes, it's in the code block. :c

@umar4911 I've already tried that.
Title: Re: Calling the next row of the query
Post by: umar4911 on May 03, 2018, 01:07 PM
@KuRiMi what is the column number of tag and players??
Title: Re: Calling the next row of the query
Post by: D4rkR420R on May 03, 2018, 04:41 PM
Quote from: umar4911 on May 03, 2018, 01:07 PM@KuRiMi what is the column number of tag and players??

Column 1 & 2.
Title: Re: Calling the next row of the query
Post by: Mahmoud Tornado on May 03, 2018, 09:25 PM
Quote from: KuRiMi on May 03, 2018, 01:05 PM
Quote from: Mahmoud Tornado on May 03, 2018, 11:51 AMI don't know but did you try to add?

FreeSQLQuery(q);

Yes, it's in the code block. :c

Bob. :V
Title: Re: Calling the next row of the query
Post by: umar4911 on May 04, 2018, 11:04 AM
local a = 0, b = 0, q = QuerySQL( clan, "SELECT * FROM Members" );
while( GetSQLColumnData( q, 0 ) )
{
 local c1 = QuerySQL( clan, "SELECT * FROM Members WHERE Tag = '"+ GetTok( arguments, " ", 1 ) +"'" );
local c2 = QuerySQL( clan, "SELECT * FROM Members WHERE Tag = '"+ GetTok( arguments, " ", 2 ) +"'" );
 if( GetSQLColumnData( c1, 0  ) != null && GetSQLColumnData(c1, 1)  != null) a++;
 if( GetSQLColumnData( c2, 0 ) != null && GetSQLColumnData(c2, 1)  != null) b++;
Message("[#FFFFFF] Hello"); // for test to see that is it looping
 GetSQLNextRow( q );
}
Remember to remove the Message if the code worked.
Title: Re: Calling the next row of the query
Post by: D4rkR420R on May 04, 2018, 10:20 PM
Quote from: umar4911 on May 04, 2018, 11:04 AMlocal a = 0, b = 0, q = QuerySQL( clan, "SELECT * FROM Members" );
while( GetSQLColumnData( q, 0 ) )
{
 local c1 = QuerySQL( clan, "SELECT * FROM Members WHERE Tag = '"+ GetTok( arguments, " ", 1 ) +"'" );
local c2 = QuerySQL( clan, "SELECT * FROM Members WHERE Tag = '"+ GetTok( arguments, " ", 2 ) +"'" );
 if( GetSQLColumnData( c1, 0  ) != null && GetSQLColumnData(c1, 1)  != null) a++;
 if( GetSQLColumnData( c2, 0 ) != null && GetSQLColumnData(c2, 1)  != null) b++;
Message("[#FFFFFF] Hello"); // for test to see that is it looping
 GetSQLNextRow( q );
}
Remember to remove the Message if the code worked.

Nu... ;-;.
Title: Re: Calling the next row of the query
Post by: umar4911 on May 05, 2018, 04:01 AM
Quote from: KuRiMi on May 04, 2018, 10:20 PM
Quote from: umar4911 on May 04, 2018, 11:04 AMlocal a = 0, b = 0, q = QuerySQL( clan, "SELECT * FROM Members" );
while( GetSQLColumnData( q, 0 ) )
{
 local c1 = QuerySQL( clan, "SELECT * FROM Members WHERE Tag = '"+ GetTok( arguments, " ", 1 ) +"'" );
local c2 = QuerySQL( clan, "SELECT * FROM Members WHERE Tag = '"+ GetTok( arguments, " ", 2 ) +"'" );
 if( GetSQLColumnData( c1, 0  ) != null && GetSQLColumnData(c1, 1)  != null) a++;
 if( GetSQLColumnData( c2, 0 ) != null && GetSQLColumnData(c2, 1)  != null) b++;
Message("[#FFFFFF] Hello"); // for test to see that is it looping
 GetSQLNextRow( q );
}
Remember to remove the Message if the code worked.

Nu... ;-;.
Does it show the message?
Title: Re: Calling the next row of the query
Post by: Saiyan Attack on May 05, 2018, 07:08 AM
for your information, you just move to the next row in "local q" but not in c1 and c2 it stuck in first row. you've to add them also in "GetSQLNextRow". and if it didn't works then show your command and show your database pic.
Title: Re: Calling the next row of the query
Post by: D4rkR420R on May 05, 2018, 09:24 PM
Solved the issue, thanks for your support.