jp_create_db_sjis.test
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:0k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. --character_set sjis
  2. SET NAMES sjis;
  3. SET character_set_database = sjis;
  4. --disable_warnings
  5. drop database if exists `莆莺轥;
  6. drop database if exists `擔杮岅`;
  7. drop database if exists `僜廫昞`;
  8. --enable_warnings
  9. #
  10. # Test Creating databases using Japanese charact for DB name in ujis encoding
  11. #
  12. CREATE DATABASE `莆莺轥;
  13. CREATE DATABASE `擔杮岅`;
  14. CREATE DATABASE `僜廫昞`;
  15. SHOW DATABASES;
  16. USE `莆莺轥;
  17. USE `擔杮岅`;
  18. USE `僜廫昞`;
  19. DROP DATABASE `莆莺轥;
  20. DROP DATABASE `擔杮岅`;
  21. DROP DATABASE `僜廫昞`;