After connecting to MariaDB and executing the following commandCREATE TABLE ora_emp ENGINE=CONNECT TABLE_TYPE=ODBC TABNAME='tablename' CONNECTION='DSN=ORCL;UID=userid;PWD=pass';
INSERT INTO test.ora_emp(gubun1, gubun2) VALUES ('한', '글')
SELECT * FROM ora_emp
As you can see, it is displayed as ??. How can I resolve this issue?
↧
Character encoding issue when connecting from MariaDB to Oracle DB using unixODBC in CentOS
↧