I followed https://stackoverflow.com/a/35189650/4534 but still I get Error 1366: Incorrect string value
, when posting an emoji into "name":
INSERT INTO `users` (`name`) VALUES ('Foo bar ');
SQL setup is:
SET NAMES utf8mb4;
CREATE DATABASE rest_api_example;
USE rest_api_example;
CREATE TABLE users (
id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(50) NOT NULL,
age INT NOT NULL
);
I use the mariadb image to test the above sql via https://github.com/kaihendry/GoApiTutorial/blob/master/docker-compose.yml