使用JRC替换子报表的数据库连接

时间:2009-01-26 10:55:29

标签: java crystal-reports

由于我使用的是较新版本的JRC,因此无法再更新数据库连接信息。我不知道为什么。此代码使用了去年秋天的JRC版本(遗憾的是我没有版本号):

ReportClientDocument doc = new ReportClientDocument();
doc.open("report.rpt");

IDatabase db = null; // get sub report database

// we'll overwrite the database connection information within
// the chosen report.
Map<String, String> bag = new HashMap<String, String>();
bag.put("Connection URL", "jdbc:oracle:thin:@LOCALHOST:1521:DATABASENAME");
bag.put("Server Type", "JDBC (JNDI)");
bag.put("Database DLL", "crdb_jdbc.dll");
bag.put("Database Class Name", "oracle.jdbc.driver.OracleDriver");

for (Object table : db.getTables()) {
  updateTable(dhb, dc, (ITable)table, bag);
}

...

private void updateTable(DatabaseController dc, ITable table, 
    Map<String, String> bag) throws ReportSDKException {

  ITable t = (ITable)table.clone(true);

  LOGGER.debug(t.getName());
  LOGGER.debug("1: " + t.getConnectionInfo().getAttributes());

  IConnectionInfo connInfo = t.getConnectionInfo();
  connInfo.setUserName("UserX");
  connInfo.setPassword("xxxxx");
  connInfo.setAttributes(new PropertyBag(bag));
  // LOGGER.debug("ConnInfo Kind: " + connInfo.getKind());
  t.setConnectionInfo(connInfo);
  // t.setName(((ITable)table).getName());
  t.setQualifiedName("UserX" + "." + table.getName());
  dc.setTableLocation(table, t);

  LOGGER.debug("2: " + t.getConnectionInfo().getAttributes());

}

我收到这个错误:'Fehler bei der Suche nach JNDI-Namen(UserY)'。这意味着JRC无法找到给定的JNDI名称。

有谁知道这些JRC版本之间的某些变化?有没有人知道解决方案?

1 个答案:

答案 0 :(得分:1)

我在长时间的调试会话后发现了问题和解决方法。

// incomplete code example

for(Object table : db.getTables()) {

  ITable t = (ITable)((ITable)table).clone(true);
  System.out.println(t.getName());

  // modifying t, bag is an existing instance of class PropertyBag
  t.getConnectionInfo().setAttributes(bag);

  // dc is an existing instance of DatabaseController
  dc.setTableLocation((ITable)table, t)

}

db.getTables()包含3个表A,B和C.如果我们运行上面的代码System.out将A,A,B打印到控制台。

如果我们要发表评论dc.setTableLocation((ITable)table, t)。将打印A,B,C。我假设dc.setTableLocation((ITable)table, t)在内部修改表的列表。

我们正在使用以下解决方法:

// incomplete code example

// WORKAROUND CODE
Map<ITable, ITable> oldNewMap = new HashMap<ITable, ITable>();

for(Object table : db.getTables()) {

  ITable t = (ITable)((ITable)table).clone(true);
  System.out.println(t.getName());

  // modifying t, bag is an existing instance of class PropertyBag
  t.getConnectionInfo().setAttributes(bag);

  // WORKAROUND CODE
  oldNewMap.put((ITable)table, t);

}

// WORKAROUND CODE
for (Entry<ITable, ITable> e : oldNewMap.entrySet()) {
  dc.setTableLocation(e.getKey(), e.getValue());
}

我希望有人能通过这种解决方法节省时间和金钱。 ;-)我也将它发布到官方论坛。

Forum: Java Development - Crystal Reports