I'm working on a PHP-based webapp that has an existing MySQL database where all text columns use latin1 encoding, but they have utf8 data in them.
This works fine for the PHP app, which uses latin1 encoding for the db connection to retrieve the data then outputs directly to the browser, telling the browser the page is utf8.
However, we are now trying to use Solr to index the database, using the MySQL JDBC connector, and we are getting gibberish words in the index.
Here is the connection string:
<dataSource
url="jdbc:mysql://localhost/db_name?characterEncoding=latin1&characterSetResults=utf8"
user="user" password="password" />
Is there a way to get Solr to retrieve the data as latin1, and then treat it as utf8 without converting it? I've tried changing the characterEncoding and characterSetResults parameters in the JDBC connection string, to no avail.
I'm sure the right way to fix this is to convert all the text columns to utf8, but I'd prefer not to go that route (yet) because it will break the webapp.