Posts: 12
Threads: 3
Joined: Dec 2007
Reputation:
0
Hello, i have MySQL query, but i need to use more than 2048 characters, is it possible, how?
Posts: 107
Threads: 3
Joined: Mar 2011
Reputation:
0
Try to use global variable with this size
Posts: 107
Threads: 3
Joined: Mar 2011
Reputation:
0
Try to use 2 queries instead of 1
Yes, it's possible. Pawn can create any string size, as long as the computer the script is being compiled on has enough memory to process those cells (remember, 2048 cells is 8192 bytes, around 8 kb).
Start by adding 128 to the string size each time until your queries are perfectly in size and execute correctly.