I am trying to set the charset when letting Matlab connect to remote mysql database server.
The connection url is like this:
jdbc:mysql://host/mtdb?useUnicode=true&characterEncoding=UTF8
And after executing:
c = database("mydb", 'username', 'password','com.mysql.jdbc.Driver', "connection_string as above");
But Matlab throws an exception:
'Unsupported character encoding 'UTF8mydb'.
I cannot see why character encoding is appended with "mydb". I don't see any syntax error in the connection url format.