public OnPlayerCommandText(playerid, cmdtext[])
{
if(!strcmp(cmdtext,"/EchoWoetJoinList",true))
{
new DBResult:Result;
Result = db_query( Database, "SELECT * FROM `join_log` WHERE name='Woet'" );
for(new a;a<db_num_rows(Result);a++)
{
new info[2][30];
db_get_field_assoc(Result, "ip", info[0], 30);
db_get_field_assoc(Result, "time", info[1], 30);
printf( "Print join list: Name: Woet IP: %s Date: %s", info[0], info[1] );
//db next row to get the next result
db_next_row(Result);
}
return 1;
}
return 0;
}
Das ist das Beispiel aus der SA-MP Wiki.
Vergleich den Aufbau mit dem von MySQL.