Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

1 Answer

up vote 1 down vote accepted

Try this instead:

dbURL = 'jdbc:mysql://localhost/mydb?useUnicode=true&characterEncoding=UTF8';
conn = database('', 'user', 'pass', 'com.mysql.jdbc.Driver', dbURL)
curs = exec(conn, 'select * from table')
share|improve this answer
Thanks, it works. By the way, is this a bug? – xiaohan2012 Jun 20 '12 at 14:23
@xiaohan2012: not really, you dont need to specify the database name in both places (instance and url) – Amro Jun 20 '12 at 19:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.