List of usage examples for java.lang Short toString
public static String toString(short s)
From source file:net.sourceforge.msscodefactory.cfacc.v2_0.CFAccPgSql.CFAccPgSqlISOCountryLanguageTable.java
public CFAccCursor openISOCountryLanguageCursorByLanguageIdx(CFAccAuthorization Authorization, short ISOLanguageId) { String sql = getSqlSelectISOCountryLanguageBuff() + "WHERE " + "iscl.ISOLanguageId = " + Short.toString(ISOLanguageId) + " " + "ORDER BY " + "iscl.ISOCountryId ASC" + ", " + "iscl.ISOLanguageId ASC"; CFAccCursor cursor = new CFAccPgSqlCursor(Authorization, schema, sql); return (cursor); }
From source file:net.sourceforge.msscodefactory.cfasterisk.v2_0.CFAstDb2LUW.CFAstDb2LUWISOCountryCurrencyTable.java
public CFAstCursor openISOCountryCurrencyCursorByCurrencyIdx(CFAstAuthorization Authorization, short ISOCurrencyId) { String sql = getSqlSelectISOCountryCurrencyBuff() + "WHERE " + "iccy.ISOCurrencyId = " + Short.toString(ISOCurrencyId) + " " + "ORDER BY " + "iccy.ISOCountryId ASC" + ", " + "iccy.ISOCurrencyId ASC"; CFAstCursor cursor = new CFAstDb2LUWCursor(Authorization, schema, sql); return (cursor); }
From source file:net.sourceforge.msscodefactory.cfasterisk.v2_0.CFAstDb2LUW.CFAstDb2LUWISOCountryLanguageTable.java
public CFAstCursor openISOCountryLanguageCursorByLanguageIdx(CFAstAuthorization Authorization, short ISOLanguageId) { String sql = getSqlSelectISOCountryLanguageBuff() + "WHERE " + "iscl.ISOLanguageId = " + Short.toString(ISOLanguageId) + " " + "ORDER BY " + "iscl.ISOCountryId ASC" + ", " + "iscl.ISOLanguageId ASC"; CFAstCursor cursor = new CFAstDb2LUWCursor(Authorization, schema, sql); return (cursor); }
From source file:net.sourceforge.msscodefactory.cfasterisk.v2_0.CFAstMSSql.CFAstMSSqlISOCountryCurrencyTable.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 CFAstMSSqlCursor(Authorization, schema, sql); return (cursor); }
From source file:net.sourceforge.msscodefactory.cfasterisk.v2_0.CFAstMSSql.CFAstMSSqlISOCountryLanguageTable.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 CFAstMSSqlCursor(Authorization, schema, sql); return (cursor); }
From source file:net.sourceforge.msscodefactory.cfacc.v2_0.CFAccDb2LUW.CFAccDb2LUWISOCountryCurrencyTable.java
public CFAccCursor openISOCountryCurrencyCursorByCurrencyIdx(CFAccAuthorization Authorization, short ISOCurrencyId) { String sql = getSqlSelectISOCountryCurrencyBuff() + "WHERE " + "iccy.ISOCurrencyId = " + Short.toString(ISOCurrencyId) + " " + "ORDER BY " + "iccy.ISOCountryId ASC" + ", " + "iccy.ISOCurrencyId ASC"; CFAccCursor cursor = new CFAccDb2LUWCursor(Authorization, schema, sql); return (cursor); }
From source file:net.sourceforge.msscodefactory.cfacc.v2_0.CFAccDb2LUW.CFAccDb2LUWISOCountryLanguageTable.java
public CFAccCursor openISOCountryLanguageCursorByLanguageIdx(CFAccAuthorization Authorization, short ISOLanguageId) { String sql = getSqlSelectISOCountryLanguageBuff() + "WHERE " + "iscl.ISOLanguageId = " + Short.toString(ISOLanguageId) + " " + "ORDER BY " + "iscl.ISOCountryId ASC" + ", " + "iscl.ISOLanguageId ASC"; CFAccCursor cursor = new CFAccDb2LUWCursor(Authorization, schema, sql); return (cursor); }
From source file:net.sourceforge.msscodefactory.cfacc.v2_0.CFAccMSSql.CFAccMSSqlISOCountryCurrencyTable.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 CFAccMSSqlCursor(Authorization, schema, sql); return (cursor); }
From source file:net.sourceforge.msscodefactory.cfacc.v2_0.CFAccMSSql.CFAccMSSqlISOCountryLanguageTable.java
public CFAccCursor openISOCountryLanguageCursorByCountryIdx(CFAccAuthorization Authorization, short ISOCountryId) { String sql = getSqlSelectISOCountryLanguageBuff() + " WHERE " + "iscl.isocountryid = " + Short.toString(ISOCountryId) + " " + "ORDER BY " + "iscl.ISOCountryId ASC" + ", " + "iscl.ISOLanguageId ASC"; CFAccCursor cursor = new CFAccMSSqlCursor(Authorization, schema, sql); return (cursor); }
From source file:net.sourceforge.msscodefactory.cfensyntax.v2_2.CFEnSyntaxMySql.CFEnSyntaxMySqlISOCountryCurrencyTable.java
public CFEnSyntaxCursor openISOCountryCurrencyCursorByCurrencyIdx(CFEnSyntaxAuthorization Authorization, short ISOCurrencyId) { String sql = getSqlSelectISOCountryCurrencyBuff() + "WHERE " + "iccy.ISOCurrencyId = " + Short.toString(ISOCurrencyId) + " " + "ORDER BY " + "iccy.ISOCountryId ASC" + ", " + "iccy.ISOCurrencyId ASC"; CFEnSyntaxCursor cursor = new CFEnSyntaxMySqlCursor(Authorization, schema, sql); return (cursor); }