com.scudata.dm.sql.FixedParamFunInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of esproc Show documentation
Show all versions of esproc Show documentation
SPL(Structured Process Language) A programming language specially for structured data computing.
package com.scudata.dm.sql;
import java.util.HashMap;
import java.util.Map;
/**
* ?????????̶??ı???????Ϣ
* @author RunQian
*
*/
public class FixedParamFunInfo extends FunInfo {
public static final String NONSUPPORT = "N/A";
private HashMap infoMap = new HashMap();
public FixedParamFunInfo() {
}
public FixedParamFunInfo(String name, int pcount) {
super(name, pcount);
}
/*
* infoֵ??????3??????? Ϊnull????ʾ???????һ?? ΪN/A(?????ִ?Сд)????ʾ??֧?ִ˺???
* ?????ʾ???ݿ?SQL????ʽ?????n??ʾ???????ĵ?n????????
*/
public String getInfo(int dbType) {
return infoMap.get(new Integer(dbType));
}
public void setInfo(int dbType, String info) {
infoMap.put(new Integer(dbType), info);
}
public Map getInfos() {
return infoMap;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy