java.sql.SQLException: ORA-03115: unsupported network datatype or representation

前端 未结 3 1233
忘了有多久
忘了有多久 2020-12-16 10:38

I\'m Using Oracle 11g database. When i try to access data from db it was showing the error java.sql.SQLException: ORA-03115: unsupported network datatype or representation.

3条回答
  •  温柔的废话
    2020-12-16 11:18

    Instead of:

    rs = ps.executeQuery(Query);
    

    you should execute:

    rs = ps.executeQuery();
    

    Otherwise, you unprepare your statement and lose all parameters because you assign it a new SQL statement (even though it's the same).

提交回复
热议问题