On Wed, 21 Nov 2007, smelly wrote:
I am using ibatis and oracle 10. The jdbc driver is oracle.jdbc.driver.OracleDriver. When I retrieve data from table, I found a space ' ' is appended. Let's say column ACTIVE_IND CHAR(1), the data retrieved is 'A '. is it weird? Does anybody have idea?
CHAR is a fixed length, so you get the padding. -- Graeme -