While executing a query by Statement object, works fine but executing same query by PreparedStatement object throws a SQL Exception.
This query works fine...
String query = "SELECT A, B, C, D, LOBJ FROM TABLE WHERE LOBJ = 'sGMMEMDEML2';
Statement stmt = con.createStatement()
ResultSet rs = stmt.executeQuery(query);
This query throws sql exception (DB2 SQL Error: SQLCODE=-302, SQLSTATE=22001, SQLERRMC=null)...
String query = "SELECT A, B, C, D, LOBJ FROM TABLE WHERE LOBJ = ?;
PreparedStatement preStmt = con.prepareStatement(query);
preStmt.setString(1, 'sGMMEMDEML2');
ResultSet rs = preStmt.executeQuery();
The column LOBJ in view TABLE is 10 char long but its specified value in where clause may or may not 10 char long due to some restriction in Application.
Can anybody help me out, how this can be executed with PreparedStatement.
Thanks in advance.
