【标题描述】:
【兼容性】jdbc调用存储过程注册出参为char,但数据库返回类型为varchar,出现了error报错
具体测试用例:
@Test
public void testSpOutChar() throws SQLException {
Statement stmt = null;
CallableStatement cmt = null;
try {
// create sp
String procedureSql = "create or replace procedure test_sp_out_char(\n" +
"\t pa in int4,\n" +
"\t pb out varchar,\n" +
"\t pc out int8)\n" +
"IS \n" +
"begin \n" +
"pb := 'out1'; \n" +
"pc := pa + 10; \n" +
"end;";
stmt = con.createStatement();
stmt.execute(procedureSql);
// execute sp
String commandText = "{call test_sp_out_char(?, ?, ?)}";
cmt = con.prepareCall(commandText);
cmt.setInt(1, 1010);
cmt.registerOutParameter(2, Types.CHAR);
cmt.registerOutParameter(3, Types.BIGINT);
cmt.execute();
// get result set
Object pa = cmt.getObject(1);
String pb = cmt.getString(2);
long pc = cmt.getLong(3);
assertEquals(null, pa);
assertEquals("out1", pb);
assertEquals(1020, pc);
} finally {
TestUtil.closeQuietly(stmt);
TestUtil.closeQuietly(cmt);
}
}
Hey @sam-pippi, Welcome to openGauss Community.
All of the projects in openGauss Community are maintained by @opengauss_bot.
That means the developers can comment below every pull request or issue to trigger Bot Commands.
Please follow instructions at Here to find the details.
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。
Hi @sam-pippi,
if you want to get quick review about your issue, please contact the owner in first: @justbk ,
and then any of the maintainers: @pikeTWG
and then any of the committers: @kamusis , @vimiix , @wangweizz , @travelliu , @aaronwell , @willloong
if you have any question, please contact the SIG: Connectors.
@sam-pippi 麻烦上传java脚本至附件,包括其他两个问题单,谢谢
验收版本:compiled at 2024-02-29-10:03:35 build fb8238f
验收结论:验收通过
登录 后才可以发表评论