Sudipta Ghosh
Sudipta Ghosh

Reputation: 21

invalid UTF-8 data

I am facing a issue of invalid UTF-8 data in my application.

Actually whenever i opens my application for editing purpose i get the following error:

[Macromedia][Oracle JDBC Driver]Transliteration failed, reason: invalid UTF8 data

Upvotes: 0

Views: 2904

Answers (2)

James A Mohler
James A Mohler

Reputation: 11120

Excerpt from Nodans

The DataDirect Oracle Driver that ships with ColdFusion 9 has an error in it. It appears the error is fixed and if you have an agreement with the provider, you can download an update. However, I don't have an agreement so I downloaded fresh Oracle JDBC Drivers to fix the problem. Here's what I did:

Download the drivers here: http://www.oracle.com/technetwork/database/enterprise-edition/jdbc-112010-090769.html

For Details: http://www.nodans.com/index.cfm/2012/6/6/How-to-solve-error-Oracle-JDBC-DriverTransliteration-failed-reason-invalid-UTF8-data

Upvotes: 0

ajawad987
ajawad987

Reputation: 4637

Some editors expect your code file to be saved in plain UTF8. An easy way to fix it is to open up the affected code file in Notepad, and then re-save it using Notepad's default encoding. Then you can open it in your favorite editor. See if that works.

Upvotes: 1

Related Questions