Return ROWID Parameter from insert statement using JDBC connection to oracle

前端 未结 5 743
迷失自我
迷失自我 2020-12-15 13:58

I can\'t seem to get the right magic combination to make this work:


OracleDataSource ods = new oracle.jdbc.pool.OracleDataSource();
ods.setURL(\"jdbc:oracle         


        
5条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-15 14:08

    Try using ? instead of :rowid0 on your SQL string. I have had problems before with named parameters and Oracle.

提交回复
热议问题