Problem was found when a CMP entity bean deployed in Weblogic 5.1 with Oracle 8i as backend database, using connection pooling and Oracle thin driver. The finder method did not work while create()/remove() worked fine. The same bean was deployed with SYBASE ASE 12 before and it worked perfectly. Further research showed that the problem is rooting from the setString() method in prepareStatement. Here is the snippet in a test program. The following code works fine where user_id is defined as int in the table. String QueryStr = "select * from Users where user_id = ?"; stmt = con.prepareStatement(QueryStr); stmt.setInt(1, 9999); rs = stmt.executeQuery(); While the following does not return anything in the ResultSet, where user_name is defined as a varchar in the table String QueryStr = "select * from Users where user_name = ?";
con = db.getConnection(); rs = stmt.executeQuery(QueryStr); stmt.setString(1, "lin"); rs = stmt.executeQuery(); If I don't use the setString method, instead use
String QueryStr = "select * from Users where user_name = 'lin'"; It works fine too. I believe that this has something to do with the setting on Oracle side, maybe with the character set setting. Can someone tell me how to fix it? Thanks.
You have overlooked something This is the code that you identified as the problem:
change to It should work fine after that change Jamie [ February 04, 2002: Message edited by: Jamie Robertson ]
Frank Lin
Ranch Hand
Joined: Jan 26, 2001
Posts: 76
posted
0
Sorry for the confusion. I made a mistake when I cut and paste to make the code snippet. The problem was caused by not setting the column default to NOT NULL. The strange thing was it worked fine with PL/SQL select. With PreparedStatement, the query returns the result when the condition is defined as field_name > 'value' when actualy the query condition should be field_name = 'value'. I think it is something in the JDBC driver.
I have never seen this problem with the Oracle drivers before, which leads me to one of the following conclusions: 1. You have a very old version of the Oracle drivers. Download the newest version to eliminate any old bugs. 2. Your driver has become corrupt in some way. Again, download the newest version of the Oracle drivers to eliminate the corrupt code. Have you downloaded the most recent Oracle JDBC drivers? I am assuming either 1 or 2 because most bugs in the Oracle drivers have been accounted for, especially such a major one (setString method)??? Jamie