java.sql.SQLException: Unknown initial character set index '255' received from server for connector 8.0.11

后端 未结 14 2530
感情败类
感情败类 2021-02-14 22:13

While establishing the connection to a MySQL database, I\'m getting the following error

java.sql.SQLException: Unknown initial character set index \'255\' receiv         


        
14条回答
  •  傲寒
    傲寒 (楼主)
    2021-02-14 22:55

    You can add ?characterEncoding=latin1" after your url String like this for e.g.:

    "jdbc:mysql://localhost/yourDB?characterEncoding=latin1";
    

    It might work.

提交回复
热议问题