如何将数据从 Plain Old Java 对象获取到 Oracle BI Publisher?
我有一位使用 Oracle BI Publisher 的客户。今天,我们必须编写存储过程并执行 BI Publisher 中的存储过程来获取数据。与此类似,我们必须使用 DAO 来执行存储过程并取出数据。我想知道是否可以将 BI Publisher 与 DAO 集成,以通过简单的 SQL 语句直接从数据库获取数据。
I have a customer who uses Oracle BI Publisher. Today we have to write stored procedures and execute those from BI Publisher to get the data out. Similar to that we have to use DAOs to execute stored procs and get the data out. I wonder if it would be possible to integrate BI Publisher with DAOs that would get the data DIRECTLY from database in simple SQL statements.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的客户编写了 JDBC 驱动程序,因此 BI Publisher 认为它从 DBMS 获取数据,而不是我们从 POJO 获取数据。
My client wrote JDBC driver, so BI Publisher thinks it gets the data from DBMS, instead we got the data from POJOs.