临时 table 创建在 jasperserver 中不起作用(无法在只读事务中执行 CREATE TABLE)

temporary table creation not working in jasperserver(cannot execute CREATE TABLE in a read-only transaction)

我在 postgres 中有一个临时函数 table。

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 函数中设置事务?

终于找到答案了

第 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&amp;characterEncoding=UTF-8&amp;autoReconnect=true&amp;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。从下拉列表 select JNDI Data Source 而不是 JDBC Data Source.

在文本框字段 Service Name (required): 中键入 jdbc/ur_db_name。然后单击 Test Connection 您会在顶部看到一条弹出消息 Connection Passed。就是这样 现在您可以在报告中使用此 datasource。希望这会有所帮助。