最近做的一个项目需要调用台湾服务器上的DB Procdure,由于使用Springboot+Mybatis注解的方式调用,怎么都无法获取到输出内容,使用CallableStatement也获取不到,并且在Sql Developer中运行也获取不到输出。
在和同事沟通后找到了解决办法,主要是需要客户端的语系需要与数据库的语系相同。
SQL Developer调用方法如下
SET SERVEROUTPUT ON;
alter session set NLS_LANGUAGE='AMERICAN';
declare
v_cust_no varchar(30);
v_cust_name varchar(360);
v_location varchar(40);
begin
apps.MAR_COMMON_PKG.GET_AR_CUST_LOCATION(
p_org_code => 'MCT',
p_trx_number => 'IV261911000067',
o_cust_no => v_cust_no,
o_cust_name =>v_cust_name,
o_bill_to_location =>v_location
);
dbms_output.put_line('o_cust_no : '||v_cust_no);
dbms_output.put_line('o_cust_name : '||v_cust_name);
dbms_output.put_line('o_bill_to_location : '||v_location);
end;
提示:Sql Developer如何查看DBMS_Output值
1.在客户端点击查看->DBMS输出
2.点击+号 选择相应数据库。
代码中如何调用:
本人使用的Springboot2
@Autowired
JdbcTemplate jdbcTemplate;
Connection con = jdbcTemplate.getDataSource().getConnection();
con.createStatement().execute("alter session set NLS_LANGUAGE='AMERICAN'");
CallableStatement cs = con.prepareCall("{call apps.MAR_COMMON_PKG.GET_AR_CUST_LOCATION(?,?,?,?,?)}");
cs.setString(1, company);
cs.setString(2, IVMIV);
cs.registerOutParameter(3, Types.VARCHAR);
cs.registerOutParameter(4, Types.VARCHAR);
cs.registerOutParameter(5, Types.VARCHAR);
cs.execute();
String o_custo_no = cs.getString(3);
String o_custo_name = cs.getString(4);
String o_bill_to_location = cs.getString(5);