@lololo said in Проблема с базой данных:
Если вы выберете в базе данных поле «число» вместо «строка», максимальное число будет равно 10000.
Я работаю с большими числами, поэтому я не могу обновить базу данных.
Любое решение?
Спасибо!



In the BAS database, in the int column, you can put a digit no more than 2147483647

Test script
The number 2 147 483 647 is also the maximum value for a 32-bit signed integer in >computing. It is therefore the maximum value for variables declared as int in many >programming languages running on popular CPUs, and the maximum possible score (or amount >of money) for many video games. The appearance of the number often reflects an error, >overflow condition, or missing value.
Use third-party databases or specify the column type string. And in the script itself, convert string to int.