Hsqldb table encoding

前端 未结 3 616
清歌不尽
清歌不尽 2021-01-24 07:41

How do I set the character encoding for a specific table? E.g:

CREATE TABLE COMMENTS (
    ID INTEGER GENERATED BY DEFAULT AS IDENTITY (START WITH 0, INCREMENT BY 1)          


        
3条回答
  •  走了就别回头了
    2021-01-24 08:20

    HSQLDB certainly stores all data in Unicode (with the exception of TEXT tables where you have to specify UTF-8). Therefore you don't need to specify a character encoding for normal tables.

提交回复
热议问题