23.10.2016, 12:40
The query selects only "ID" column and you try to retrieve data from other columns (that are not selected) which will result in errors. There are few things that I'd suggest to use them differently:
- 1 query that selects all rows instead of loop + query over and over again.
- threaded queries over non-threaded queries.
- creating variables out of loops.
- not storing in-game vehicle ID in database.
- 1 query that selects all rows instead of loop + query over and over again.
- threaded queries over non-threaded queries.
- creating variables out of loops.
- not storing in-game vehicle ID in database.

