adodb-en.inc.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. $ADODB_LANG_ARRAY = array (
  3. 'LANG' => 'en',
  4. DB_ERROR => 'unknown error',
  5. DB_ERROR_ALREADY_EXISTS => 'already exists',
  6. DB_ERROR_CANNOT_CREATE => 'can not create',
  7. DB_ERROR_CANNOT_DELETE => 'can not delete',
  8. DB_ERROR_CANNOT_DROP => 'can not drop',
  9. DB_ERROR_CONSTRAINT => 'constraint violation',
  10. DB_ERROR_DIVZERO => 'division by zero',
  11. DB_ERROR_INVALID => 'invalid',
  12. DB_ERROR_INVALID_DATE => 'invalid date or time',
  13. DB_ERROR_INVALID_NUMBER => 'invalid number',
  14. DB_ERROR_MISMATCH => 'mismatch',
  15. DB_ERROR_NODBSELECTED => 'no database selected',
  16. DB_ERROR_NOSUCHFIELD => 'no such field',
  17. DB_ERROR_NOSUCHTABLE => 'no such table',
  18. DB_ERROR_NOT_CAPABLE => 'DB backend not capable',
  19. DB_ERROR_NOT_FOUND => 'not found',
  20. DB_ERROR_NOT_LOCKED => 'not locked',
  21. DB_ERROR_SYNTAX => 'syntax error',
  22. DB_ERROR_UNSUPPORTED => 'not supported',
  23. DB_ERROR_VALUE_COUNT_ON_ROW => 'value count on row',
  24. DB_ERROR_INVALID_DSN => 'invalid DSN',
  25. DB_ERROR_CONNECT_FAILED => 'connect failed',
  26. 0 => 'no error', // DB_OK
  27. DB_ERROR_NEED_MORE_DATA => 'insufficient data supplied',
  28. DB_ERROR_EXTENSION_NOT_FOUND=> 'extension not found',
  29. DB_ERROR_NOSUCHDB => 'no such database',
  30. DB_ERROR_ACCESS_VIOLATION => 'insufficient permissions'
  31. );
  32. ?>