I ran the following program with sqljdbc4.jar in the classpath. There is data in the EMPLOYEE table for the employee name DEMO but the following program is not retrieving data for DEMO. When the same program was run with Merlia.jar in the classpath, it was retrieving data for DEMO.
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
Connection con = DriverManager.getConnection("jdbc:sqlserver://SERVER23:5000;databaseName=TESTDB", "SYSADM", "SYSADM");
String sqlSele = "SELECT * FROM EMPLOYEE WHERE EMPNAME like ?" ;
PreparedStatement sts = con.prepareStatement(sqlSele);
sts.setString(1, "DEMO" );
ResultSet rs = sts.executeQuery();
while(rs.next())
{
System.out.println("driverConn.main()" + rs.toString());
}
}
catch(Exception e)
{
System.out.println(e);
e.printStackTrace();
}
Modified the sql statement as "SELECT * FROM EMPLOYEE WHERE EMPNAME like ‘DEMO’”(No setString method is used here) and executed the program again, this time I got the results.
Can someone help me out from this issue.