Save Data in Arabic in MySQL database

前端 未结 7 1868
我在风中等你
我在风中等你 2020-11-22 14:13

I have changed the charset of the tables and of the column, i get the arabic text as ???? marks in MYSQL database

here is the design of the table

  C         


        
7条回答
  •  隐瞒了意图╮
    2020-11-22 15:07

    To insert Arabic Data manually into your Phpmyadmin.

    First you check either your database , table and column name is utf8 set or not. If these are not set to utf8 then first you set it then you may insert arabic data into you db table.

    YOU MAY CHECK EACH OF THESE BY LOOKING BELOW EXAMPLE.

    For Database:

    SELECT default_character_set_name FROM information_schema.SCHEMATA S
    WHERE schema_name = "schemaname";
    

    For Tables:

    SELECT CCSA.character_set_name FROM information_schema.`TABLES` T,
           information_schema.`COLLATION_CHARACTER_SET_APPLICABILITY` CCSA
    WHERE CCSA.collation_name = T.table_collation
      AND T.table_schema = "schemaname"
      AND T.table_name = "tablename";
    

    For Columns:

    SELECT character_set_name FROM information_schema.`COLUMNS` C
    WHERE table_schema = "schemaname"
      AND table_name = "tablename"
      AND column_name = "columnname";
    

    You may easily set utf8 to your tables if you are using SQLYog.

    Just right click on db, table, column name and click on alter option and set to

    Database Chartset = utf8 Database Collation = utf8_general_ci .

    Just Enjoy ....

提交回复
热议问题