gpt4 book ai didi

php - PHP 中 Mysql 空间不足

转载 作者:行者123 更新时间:2023-11-29 08:57:07 26 4
gpt4 key购买 nike

在 PHP 中,我需要这样的东西:

1) if('out of space' == mysql_error($link))
2) if(10 == mysql_error($link))
3) if(true == mysql_error('out of space'))
4) if(... whatever ....)
5) if(1024 == mysql_errno($link))
{
echo 'DB is out of space';
}

最佳答案

您可能正在寻找错误代码 1021 (ER_DISK_FULL) 和/或 1041 (ER_OUT_OF_RESOURCES)

switch( mysql_errno($link) ) {
case 1021:
// handle ER_DISK_FULL
break;
case 1041:
// handle ER_OUT_OF_RESOURCES
break
...

另请参阅
https://dev.mysql.com/doc/refman/5.0/en/error-messages-server.html#error_er_disk_full
https://dev.mysql.com/doc/refman/5.0/en/error-messages-server.html#error_er_out_of_resources
(也许是 1037、1038)

关于php - PHP 中 Mysql 空间不足,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9666409/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com