My VBA code snippet is:
Set rsRecords = CreateObject("ADODB.Recordset")
strQuery = Printf("INSERT INTO `parameters` (`name`) VALUES ('%s');", Cells(Row, 1).Text)
MsgBox (strQuery)
rsRecords.Open strQuery, oConn
The MsgBox properly displays the symbol (°) but MySQL Workbench shows me a (?) has been inserted instead. I can use Workbench to replace the ? with °, so I know it's not an issue with the DB table.
It appears the issue is in ADODB. Any ideas on how to fix?
Dan