I am working on my play app which uses anorm to access my DB. So here goes the part of my application.conf
db.default.driver=com.mysql.jdbc.Driver
db.default.url="jdbc:mysql://localhost:3306/bubusik?characterEncoding=UTF-8"
db.default.user=root
db.default.password="*********"
If I remove the ?characterEncoding=UTF-8
part then anything not English language will be as ???????? questions marks in the DB.
So I am wondering what exactly this piece of config sets up?
Please note that default charset of my DB schema is UTF-8 as well as for all it's tables.