Save Data in Arabic in MySQL database

前端 未结 7 2022
我在风中等你
我在风中等你 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 14:59

    CREATE TABLE mydb.categories         
    (category_id tinyint(2) NOT NULL AUTO_INCREMENT
    ,category_name MEDIUMTEXT NOT NULL
    ,PRIMARY KEY (category_id)) DEFAULT CHARACTER SET utf8
    

提交回复
热议问题