Sqlite help
#4

That might be because it's a while loop, i never tested that sorry try this.

pawn Код:
new num_rows = db_num_rows(qResult);

for( new i=0; i < num_rows; ++i )
{
    new Field[128];
    db_get_field_assoc(qResult, "ID", Field, 12);
    new i = strval(Field);

    db_get_field_assoc(qResult, "Name", Field, 32);
    strmid(gInfo[i][gName],Field,0,32);

    db_get_field_assoc(qResult, "Members", Field, 12);
    gInfo[i][gMembers] = strval(Field);

    db_get_field_assoc(qResult, "Color", Field, 32);
    strmid(gInfo[i][gColor],Field,0,32);

    db_get_field_assoc(qResult, "Leader", Field, MAX_PLAYER_NAME);
    printf("%s",Field);
   
    db_next_row(qResult);//move on to next row
}
db_free_result(qResult);
Reply


Messages In This Thread
Sqlite help - by new121 - 19.01.2013, 08:05
Re: Sqlite help - by iggy1 - 19.01.2013, 08:12
Re: Sqlite help - by new121 - 19.01.2013, 08:27
Re: Sqlite help - by iggy1 - 19.01.2013, 08:43
Re: Sqlite help - by new121 - 19.01.2013, 08:46

Forum Jump:


Users browsing this thread: 2 Guest(s)