List of usage examples for java.lang Short toString
public static String toString(short s)
From source file:net.sourceforge.msscodefactory.cfcrm.v2_1.CFCrmDb2LUW.CFCrmDb2LUWISOCountryLanguageTable.java
public CFCrmCursor openISOCountryLanguageCursorByLanguageIdx(CFCrmAuthorization Authorization, short ISOLanguageId) { String sql = getSqlSelectISOCountryLanguageBuff() + "WHERE " + "iscl.ISOLanguageId = " + Short.toString(ISOLanguageId) + " " + "ORDER BY " + "iscl.ISOCountryId ASC" + ", " + "iscl.ISOLanguageId ASC"; CFCrmCursor cursor = new CFCrmDb2LUWCursor(Authorization, schema, sql); return (cursor); }
From source file:net.sourceforge.msscodefactory.cfcrm.v2_1.CFCrmMSSql.CFCrmMSSqlISOCountryCurrencyTable.java
public CFCrmCursor openISOCountryCurrencyCursorByCountryIdx(CFCrmAuthorization Authorization, short ISOCountryId) { String sql = getSqlSelectISOCountryCurrencyBuff() + " WHERE " + "iccy.isocountryid = " + Short.toString(ISOCountryId) + " " + "ORDER BY " + "iccy.ISOCountryId ASC" + ", " + "iccy.ISOCurrencyId ASC"; CFCrmCursor cursor = new CFCrmMSSqlCursor(Authorization, schema, sql); return (cursor); }
From source file:net.sourceforge.msscodefactory.cfcrm.v2_1.CFCrmMSSql.CFCrmMSSqlISOCountryLanguageTable.java
public CFCrmCursor openISOCountryLanguageCursorByCountryIdx(CFCrmAuthorization Authorization, short ISOCountryId) { String sql = getSqlSelectISOCountryLanguageBuff() + " WHERE " + "iscl.isocountryid = " + Short.toString(ISOCountryId) + " " + "ORDER BY " + "iscl.ISOCountryId ASC" + ", " + "iscl.ISOLanguageId ASC"; CFCrmCursor cursor = new CFCrmMSSqlCursor(Authorization, schema, sql); return (cursor); }
From source file:net.sourceforge.msscodefactory.cfasterisk.v2_4.CFAsteriskPgSql.CFAsteriskPgSqlISOCountryCurrencyTable.java
public CFSecurityCursor openISOCountryCurrencyCursorByCountryIdx(CFSecurityAuthorization Authorization, short ISOCountryId) { String sql = getSqlSelectISOCountryCurrencyBuff() + "WHERE " + "iccy.ISOCountryId = " + Short.toString(ISOCountryId) + " " + "ORDER BY " + "iccy.ISOCountryId ASC" + ", " + "iccy.ISOCurrencyId ASC"; CFAsteriskCursor cursor = new CFAsteriskPgSqlCursor(Authorization, schema, sql); return (cursor); }
From source file:net.sourceforge.msscodefactory.cfasterisk.v2_4.CFAsteriskPgSql.CFAsteriskPgSqlISOCountryLanguageTable.java
public CFSecurityCursor openISOCountryLanguageCursorByCountryIdx(CFSecurityAuthorization Authorization, short ISOCountryId) { String sql = getSqlSelectISOCountryLanguageBuff() + "WHERE " + "iscl.ISOCountryId = " + Short.toString(ISOCountryId) + " " + "ORDER BY " + "iscl.ISOCountryId ASC" + ", " + "iscl.ISOLanguageId ASC"; CFAsteriskCursor cursor = new CFAsteriskPgSqlCursor(Authorization, schema, sql); return (cursor); }
From source file:net.sourceforge.msscodefactory.cffreeswitch.v2_1.CFFswMySql.CFFswMySqlISOCountryCurrencyTable.java
public CFFswCursor openISOCountryCurrencyCursorByCountryIdx(CFFswAuthorization Authorization, short ISOCountryId) { String sql = getSqlSelectISOCountryCurrencyBuff() + "WHERE " + "iccy.ISOCountryId = " + Short.toString(ISOCountryId) + " " + "ORDER BY " + "iccy.ISOCountryId ASC" + ", " + "iccy.ISOCurrencyId ASC"; CFFswCursor cursor = new CFFswMySqlCursor(Authorization, schema, sql); return (cursor); }
From source file:net.sourceforge.msscodefactory.cffreeswitch.v2_1.CFFswMySql.CFFswMySqlISOCountryLanguageTable.java
public CFFswCursor openISOCountryLanguageCursorByCountryIdx(CFFswAuthorization Authorization, short ISOCountryId) { String sql = getSqlSelectISOCountryLanguageBuff() + "WHERE " + "iscl.ISOCountryId = " + Short.toString(ISOCountryId) + " " + "ORDER BY " + "iscl.ISOCountryId ASC" + ", " + "iscl.ISOLanguageId ASC"; CFFswCursor cursor = new CFFswMySqlCursor(Authorization, schema, sql); return (cursor); }
From source file:net.sourceforge.msscodefactory.cfasterisk.v2_0.CFAstMySql.CFAstMySqlISOCountryCurrencyTable.java
public CFAstCursor openISOCountryCurrencyCursorByCountryIdx(CFAstAuthorization Authorization, short ISOCountryId) { String sql = getSqlSelectISOCountryCurrencyBuff() + "WHERE " + "iccy.ISOCountryId = " + Short.toString(ISOCountryId) + " " + "ORDER BY " + "iccy.ISOCountryId ASC" + ", " + "iccy.ISOCurrencyId ASC"; CFAstCursor cursor = new CFAstMySqlCursor(Authorization, schema, sql); return (cursor); }
From source file:net.sourceforge.msscodefactory.cfasterisk.v2_0.CFAstMySql.CFAstMySqlISOCountryLanguageTable.java
public CFAstCursor openISOCountryLanguageCursorByCountryIdx(CFAstAuthorization Authorization, short ISOCountryId) { String sql = getSqlSelectISOCountryLanguageBuff() + "WHERE " + "iscl.ISOCountryId = " + Short.toString(ISOCountryId) + " " + "ORDER BY " + "iscl.ISOCountryId ASC" + ", " + "iscl.ISOLanguageId ASC"; CFAstCursor cursor = new CFAstMySqlCursor(Authorization, schema, sql); return (cursor); }
From source file:net.sourceforge.msscodefactory.cfacc.v2_0.CFAccMySql.CFAccMySqlISOCountryCurrencyTable.java
public CFAccCursor openISOCountryCurrencyCursorByCountryIdx(CFAccAuthorization Authorization, short ISOCountryId) { String sql = getSqlSelectISOCountryCurrencyBuff() + "WHERE " + "iccy.ISOCountryId = " + Short.toString(ISOCountryId) + " " + "ORDER BY " + "iccy.ISOCountryId ASC" + ", " + "iccy.ISOCurrencyId ASC"; CFAccCursor cursor = new CFAccMySqlCursor(Authorization, schema, sql); return (cursor); }