⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sqlaccess.java

📁 OLAP 的客户端代码
💻 JAVA
字号:
/*
 * ====================================================================
 * This software is subject to the terms of the Common Public License
 * Agreement, available at the following URL:
 *   http://www.opensource.org/licenses/cpl.html .
 * Copyright (C) 2003-2004 TONBELLER AG.
 * All Rights Reserved.
 * You must accept the terms of that agreement to use this software.
 * ====================================================================
 *
 * 
 */
package com.tonbeller.jpivot.param;

import javax.sql.DataSource;

import com.tonbeller.jpivot.core.Extension;
import com.tonbeller.jpivot.olap.model.Member;
import com.tonbeller.wcf.param.SessionParam;

/**
 * provides information about members that may
 * be used in (drill-thru) SQL queries
 * 
 * @author av
 */
public interface SqlAccess extends Extension {
  public static final String ID = "sqlAccess";

  /**
   * returns the data source to access the database
   */
  DataSource getDataSource();

  /**
   * returns a parameter that describes the member.
   * returns null, if the member does not represent a column
   * in the database, for example because its the ALL member
   * or a calculated member.
   * @paramName the name of the new parameter
   */
  SessionParam createParameter(Member m, String paramName);

  /**
   * returns a parameter that describes the member.
   * returns null, if the member does not represent a column
   * in the database, for example because its the ALL member
   * or a calculated member.
   * @param m the member
   * @param propertyName name of a member property whose value
   * will be used as sqlValue of the parameter. This may be used
   * in situations where the members key is for example "John Smith" 
   * and the member property is the customer ID "123" which we want to use
   * in the SQL queries.
   * @param paramName teh name of the new paramter
   */
  SessionParam createParameter(Member m, String paramName, String propertyName);
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -