17.09.2016, 16:07
EDIT: i got what you mean there.
So size is basically not a big deal when you have a rough idea how much cells it would take. Lets say i have these two queries and i know how much max they can go:
So size is basically not a big deal when you have a rough idea how much cells it would take. Lets say i have these two queries and i know how much max they can go:
pawn Код:
new query[128];
"SELECT * FROM `users` WHERE `name` = '%q' AND `password` = '%q'"
pawn Код:
new query[512];
"INSERT INTO `users` (`name`, `password`, `data`, ...) VALUES ('%q', '%q', '%q', ...)"