我在postgres
中有一个带临时表的函数。
create or replace function sp_test_function()
returns table (id integer,enqu_id integer) as
$BODY$
BEGIN
create temporary table temp_table(
id serial,
enquiry_id integer
) on commit drop;
insert into temp_table(enquiry_id) select enquiry_id from sales_enquiry;
return query select t.id,enquiry_id from temp_table t;
END;
$BODY$
language plpgsql;
我在jasper
中有一个报告,并使用上述功能获取数据。从服务器运行报告时出现此错误的问题cannot execute CREATE TABLE in a read-only transaction
。我试过了SET TRANSACTION READ WRITE
$BODY$
BEGIN
SET TRANSACTION READ WRITE
create temporary table temp_table(
id serial,
enquiry_id integer
) on commit drop
但是又出现了另一个错误transaction read-write mode must be set before any query
。如何在postgres函数中设置事务?
答案 0 :(得分:1)
最后我找到了答案。
第1步:打开context.xml
文件(C:\Jaspersoft\jasperreports-server-cp-5.5.0\apache-tomcat\webapps\jasperserver\META-INF\context.xml
)
在该文件中添加以下代码(我正在使用postgresql
db)
<Resource name="jdbc/your_db_name" auth="Container" type="javax.sql.DataSource"
maxActive="100" maxIdle="30" maxWait="10000"
username="db_username" password="db_password"
driverClassName="org.postgresql.Driver"
validationQuery="SELECT 1"
testOnBorrow="true"
url="jdbc:postgresql://127.0.0.1:5432/ur_db_name?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true&autoReconnectForPools=true" factory="com.jaspersoft.jasperserver.tomcat.jndi.JSBasicDataSourceFactory"/>
步骤:2打开web.xml
(C:\Jaspersoft\jasperreports-server-cp-5.5.0\apache-tomcat\webapps\jasperserver\WEB-INF\web.xml
)
添加以下代码
<resource-ref>
<description>some_description</description>
<res-ref-name>jdbc/ur_db_name</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
第3步:重新启动jasperserver
第4步:登录jasper server
并添加new datasource
。从下拉列表中选择JNDI Data Source
而不是JDBC Data Source
。
在文本框字段Service Name (required):
中输入jdbc/ur_db_name
。然后点击Test Connection
您会在Connection Passed
页面上看到一条弹出消息。这就是现在您可以在报告中使用此datasource
。希望这会有所帮助。