home *** CD-ROM | disk | FTP | other *** search
/ Enter 2004 June / ENTER.ISO / files / xampp-win32-1.4.5-installer.exe / xampp / 10errormap.phpt < prev    next >
Encoding:
Text File  |  2004-03-24  |  1.4 KB  |  39 lines

  1. --TEST--
  2. DB_driver::error mapping
  3. --SKIPIF--
  4. <?php chdir(dirname(__FILE__)); require_once './skipif.inc'; ?>
  5. --FILE--
  6. <?php
  7. require_once './mktable.inc';
  8. require_once '../errors.inc';
  9. ?>
  10. --EXPECT--
  11. Trying to provoke DB_ERROR_NOSUCHTABLE
  12.   DB Error: no such table
  13. Trying to provoke DB_ERROR_ALREADY_EXISTS for create table
  14.   DB Error: already exists
  15. Trying to provoke DB_ERROR_NOSUCHTABLE
  16.   DB Error: no such table
  17. Trying to provoke DB_ERROR_CONSTRAINT for primary key insert duplicate
  18.   DB Error: constraint violation
  19. Trying to provoke DB_ERROR_CONSTRAINT for primary key update duplicate
  20.   DB Error: constraint violation
  21. Trying to provoke DB_ERROR_CONSTRAINT for unique key insert duplicate
  22.   DB Error: constraint violation
  23. Trying to provoke DB_ERROR_CONSTRAINT for unique key update duplicate
  24.   DB Error: constraint violation
  25. Trying to provoke DB_ERROR_CONSTRAINT for foreign key
  26.   DB Error: constraint violation
  27. Trying to provoke DB_ERROR_CONSTRAINT_NOT_NULL on insert
  28.   DB Error: null value violates not-null constraint
  29. Trying to provoke DB_ERROR_CONSTRAINT_NOT_NULL on update
  30.   DB Error: null value violates not-null constraint
  31. Trying to provoke DB_ERROR_DIVZERO
  32.   DB Error: division by zero
  33. Trying to provoke DB_ERROR_INVALID_NUMBER
  34.   DB Error: invalid number
  35. Trying to provoke DB_ERROR_NOSUCHFIELD
  36.   DB Error: no such field
  37. Trying to provoke DB_ERROR_SYNTAX
  38.   DB Error: syntax error
  39.