BackPrevious Topic  Next TopicNext

User Data Source API

The User Data Source (UDS) API enables Designer to access data from an external data source, such as a Text file or Excel file which is not stored in a database, or when there is no JDBC driver available. This topic provides a brief introduction to the UDS API and the interface of the UDS API. It also presents some examples about how you can use the UDS API.

This topic contains the following sections:

Introduction to the UDS API

The User Data Source API is a part of the Logi Report Data Access Model as shown in the following diagram:

  • It is a Java interface that provides a dataset to Logi Report.
  • It has a PARAMETER string, which can be changed when the UDS object is added into Designer. The result set may differ according to the PARAMETER string. It is very flexible and convenient.

Logi Report Data Access Model diagram

Note icon

  • PARAMETER here is the parameter string given to the UDS interface. That is, the UDS API provides the method getResultSet (String strParam), and PARAMETER is the string strParam in this method. As a reminder, PARAMETER here is different from the parameter object in the catalog. To distinguish between them, an upper case PARAMETER is used to refer to the parameter string in the UDS, and a lower case parameter for the parameter object in a catalog.
  • To design a report, Logi Report Engine requires a metadata (see java.sql.ResultSetMetaData) which corresponds to the ResultSet that the data source has returned; to view or run a report, Logi Report Engine requires a ResultSet object. The user data source must provide both of these two parts for Logi Report Engine.

Back to top

UDS API Interface

To use the UDS API, you must implement the interface jet.datasource.JRUserDataSource, and the class definition may be as follows. For more information, see the jet.datasource.JRUserDataSource class in the Logi Report Javadoc.

import jet.datasource.*;
public class UserUDS
    implements JRUserDataSource
{
    // Class body.
}

The following are methods of the interface:

Public java.sql.ResultSet getResultSet(String strParam) throws JRUserDataSourceException

This method gets the result set for user data source.

  • PARAMETER: strParam - A String value used to request and get different result sets. The format of the PARAMETER string is defined and parsed by your Java class. You can specify the PARAMETER string when you add the UDS to a catalog. If you want to use parameters predefined in the catalog, you can reference them as @ParameterName in the PARAMETER string.

    The following lists the parsing rules for the PARAMETER string:

    • You can use any character defined on the keyboard in the parameter name, except for quotation marks.
    • You should introduce the parameter name with "@", and sometimes Designer can also recognize colon ":" as an introducer.
    • When the PARAMETER string contains characters such as: At sign (@), ':', double quotation mark ('"'), or other strings that Logi Report does not need to parse, you can use a pair of double quotation marks to quote them. For example, your PARAMETER string may be:

      jdbc:oracle:thin:@204.177.148.30:1521:orcl

      Here, "@" is a character used by the URL. If you add this PARAMETER string for a UDS in a catalog, Logi Report regards 204 as the name of a parameter in the catalog. The correct form is:

      "jdbc:oracle:thin:@204.177.148.30:1521:orcl"

  • Returns: java.sql.ResultSet - A row and column dataset that you can use in Logi Report.
  • Throws: JRUserDataSourceException - If a database access error occurs.

    When you provide a java.sql.ResultSet instance, to reduce your work, you do not need to implement all methods of java.sql.ResultSet. You can just extend abstract class jet.datasource.JRResultSet. If you specify the column properties, for example, SQL data type and precision, you do not need to provide a ResultSetMetaData instance, and Logi Report does not invoke the getMetaData() function of ResultSet. However, if you do not specify the properties, you need to implement the getMetaData() function and provide a ResultSetMetaData instance.

Public void releaseResultSet() throws JRUserDataSourceException

This method frees the ResultSet object.

  • Throws: JRUserDataSourceException - If there are some errors when freeing the resource.

Back to top

JDBC API Used by UDS

In order to get data from user-defined data source, Logi Report needs to invoke the following JDBC API (for more information about the API, see http://java.sun.com/javase/6/docs/api/).

java.sql.ResultSet

  • boolean next() throws SQLException
  • void close() throws SQLException
  • boolean wasNull() throws SQLException
  • String getString(int columnIndex) throws SQLException
  • boolean getBoolean(int columnIndex) throws SQLException
  • byte getByte(int columnIndex) throws SQLException
  • short getShort(int columnIndex) throws SQLException
  • int getInt(int columnIndex) throws SQLException
  • long getLong(int columnIndex) throws SQLException
  • float getFloat(int columnIndex) throws SQLException
  • double getDouble(int columnIndex) throws SQLException
  • byte[] getBytes(int columnIndex) throws SQLException
  • java.sql.Date getDate(int columnIndex) throws SQLException
  • java.sql.Time getTime(int columnIndex) throws SQLException
  • java.sql.Timestamp getTimestamp(int columnIndex) throws SQLException
  • java.io.InputStream getAsciiStream(int columnIndex) throws SQLException
  • java.io.InputStream getBinaryStream(int columnIndex) throws SQLException
  • ResultSetMetaData getMetaData() throws SQLException
  • Object getObject(int columnIndex) throws SQLException
  • int findColumn(String columnLabel) throws SQLException
  • BigDecimal getBigDecimal(int columnIndex) throws SQLException
  • Blob getBlob(int columnIndex) throws SQLException
  • Clob getClob(int columnIndex) throws SQLException

java.sql.ResultSetMetaData

  • int getColumnCount() throws SQLException
  • boolean isCurrency(int column) throws SQLException
  • int isNullable(int column) throws SQLException
  • int getColumnDisplaySize(int column) throws SQLException
  • String getColumnLabel(int column) throws SQLException
  • String getColumnName(int column) throws SQLException
  • String getSchemaName(int column) throws SQLException
  • int getPrecision(int column) throws SQLException
  • int getScale(int column) throws SQLException
  • String getTableName(int column) throws SQLException
  • int getColumnType(int column) throws SQLException

Note icon Logi Report invokes the method ResultSetMetaData getMetaData() throws SQLException when you do not select the Specify Columns checkbox in the New User Defined Data Source dialog box.

Back to top

Examples of Using the UDS API

The UDS API is flexible and convenient to use. Before you implement it, you should first make an overall consideration of the architecture. Designer provides you with several scenarios which use the UDS API. You can refer to them for assistance.

Back to top

BackPrevious Topic  Next TopicNext