• Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

Jarns

Member
Feb 19, 2017
20
2
0
28
Is MySQL UTF-8 Support possible yet ?
I want UTF-8 Support :/

Thank for interest.

Example Code:
code_language.skript:
update "INSERT INTO `database_utf8` (`Data_1`, `Data_2`) VALUES ('DATA', 'DATA')"
 
Of course it is, you just have to define the table.
code_language.skript:
CREATE TABLE `mytable` ( `data1` VARCHAR(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci , `data2` VARCHAR(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci) ENGINE = InnoDB;