MySQL
は、ほとんどのシステムエラーに対して、内部のテキストメッセージに加え、message
... (errno: #)
または message ...
(Errcode: #)
のいずれかの形式のシステムエラーコードを出力します。
エラーコードの意味を調べるには、システムのドキュメントを参照するか、perror
ユーティリティを使用します。
perror
は、システムエラーコード、または MyISAM/ISAM
ストレージエンジン(テーブルハンドラ)エラーコードの説明を出力します。
perror
は以下のようにして起動します。
shell>perror [OPTIONS] [ERRORCODE [ERRORCODE...]]
Example: shell>perror 13 64
Error code 13: Permission denied Error code 64: Machine is not on the network
注意: エラーメッセージは、ほとんどがシステム依存です。
This is a translation of the MySQL Reference Manual that can be found at dev.mysql.com. The original Reference Manual is in English, and this translation is not necessarily as up to date as the English version.