We are using JDBCTemplate (Spring) with MySQL as database and AES Encryption.
Our client is using special ASCII characters. That encrypts and decrypts correctly as a query. However when we display it on Web the ASCII characters shows question marks ? for ASCII (espacially for extended ASCII) character.
================================================== =====
SOURCE
================================================== =====
public SqlRowSet getReportFollowUpForProcessing(Integer reportId) {
DataFetchQueries dataFetch = new DataFetchQueries();
String sql = (String) dataFetch.GET_FOLLOWUP_REPORT_FOR_PROCESSING(repor tId);
return jdbcTemplate.queryForRowSet(sql);
}================================================== =====
we open it by using
rowset.getObject("COLUMN-NAME");
PLEASE HELP ME TO ELEMIATE THE PROBLEM
Thanking you in advance


Reply With Quote
