Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
Description
git.commit.id.abbrev=7b4c887
Code :
prepStatement = conn.prepareStatement("SELECT int_col AS INTCOL FROM dfs.jdbctesting.fewtypes_txt_view where int_col > ?");
prepStatement.setInt(1, 20);
The above code resulted in the below exception
Exception in thread "main" java.sql.SQLException: parameter ordinal 1 out of range
at net.hydromatic.avatica.Helper.createException(Helper.java:44)
at net.hydromatic.avatica.AvaticaPreparedStatement.getParameter(AvaticaPreparedStatement.java:246)
at net.hydromatic.avatica.AvaticaPreparedStatement.setInt(AvaticaPreparedStatement.java:105)
at Dummy.testBindParamsPrepStatement(Dummy.java:57)
at Dummy.main(Dummy.java:30)
Attachments
Attachments
Issue Links
- relates to
-
DRILL-3566 Calling Connection.prepareStatement throws a ClassCastException
- Closed