table.inc 872 B

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