table.inc 1.0 KB

12345678910111213141516171819202122232425262728
  1. <?PHP
  2. require_once('connect.inc');
  3. if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)) {
  4. printf("Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n",
  5. $host, $user, $db, $port, $socket);
  6. exit(1);
  7. }
  8. if (!mysqli_query($link, 'DROP TABLE IF EXISTS test')) {
  9. printf("Failed to drop old test table: [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  10. exit(1);
  11. }
  12. if (!mysqli_query($link, 'SET SESSION sql_mode=\'\'')) {
  13. printf("Failed to drop old test table: [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  14. exit(1);
  15. }
  16. if (!mysqli_query($link, 'CREATE TABLE test(id INT DEFAULT 0, label CHAR(1), PRIMARY KEY(id)) ENGINE=' . $engine)) {
  17. printf("Failed to create test table: [%d] %s\n", mysqli_errno($link), mysqli_error($link));
  18. exit(1);
  19. }
  20. if (!mysqli_query($link, "INSERT INTO test(id, label) VALUES (1, 'a'), (2, 'b'), (3, 'c'), (4, 'd'), (5, 'e'), (6, 'f')")) {
  21. printf("[%d] %s\n", mysqli_errno($link), mysqli_error($link));
  22. }
  23. ?>