Example usage for java.lang Short toString

List of usage examples for java.lang Short toString

Introduction

In this page you can find the example usage for java.lang Short toString.

Prototype

public static String toString(short s) 

Source Link

Document

Returns a new String object representing the specified short .

Usage

From source file:net.sourceforge.msscodefactory.cfcrm.v2_1.CFCrmDb2LUW.CFCrmDb2LUWISOCountryLanguageTable.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 CFCrmDb2LUWCursor(Authorization, schema, sql);
    return (cursor);
}

From source file:net.sourceforge.msscodefactory.cfasterisk.v2_4.CFAsteriskSybase.CFAsteriskSybaseISOCountryCurrencyTable.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 CFAsteriskSybaseCursor(Authorization, schema, sql);
    return (cursor);
}

From source file:net.sourceforge.msscodefactory.cfasterisk.v2_4.CFAsteriskSybase.CFAsteriskSybaseISOCountryLanguageTable.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 CFAsteriskSybaseCursor(Authorization, schema, sql);
    return (cursor);
}

From source file:net.sourceforge.msscodefactory.cfasterisk.v2_4.CFAsteriskMySql.CFAsteriskMySqlISOCountryCurrencyTable.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 CFAsteriskMySqlCursor(Authorization, schema, sql);
    return (cursor);
}

From source file:net.sourceforge.msscodefactory.cfasterisk.v2_4.CFAsteriskMySql.CFAsteriskMySqlISOCountryLanguageTable.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 CFAsteriskMySqlCursor(Authorization, schema, sql);
    return (cursor);
}

From source file:net.sourceforge.msscodefactory.cffreeswitch.v2_4.CFFreeSwitchMySql.CFFreeSwitchMySqlISOCountryCurrencyTable.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";
    CFFreeSwitchCursor cursor = new CFFreeSwitchMySqlCursor(Authorization, schema, sql);
    return (cursor);
}

From source file:net.sourceforge.msscodefactory.cffreeswitch.v2_4.CFFreeSwitchMySql.CFFreeSwitchMySqlISOCountryLanguageTable.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";
    CFFreeSwitchCursor cursor = new CFFreeSwitchMySqlCursor(Authorization, schema, sql);
    return (cursor);
}

From source file:net.sourceforge.msscodefactory.cfasterisk.v2_1.CFAstSybase.CFAstSybaseISOCountryCurrencyTable.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 CFAstSybaseCursor(Authorization, schema, sql);
    return (cursor);
}

From source file:net.sourceforge.msscodefactory.cfasterisk.v2_1.CFAstSybase.CFAstSybaseISOCountryLanguageTable.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 CFAstSybaseCursor(Authorization, schema, sql);
    return (cursor);
}

From source file:net.sourceforge.msscodefactory.cfcrm.v2_1.CFCrmDb2LUW.CFCrmDb2LUWISOCountryCurrencyTable.java

public CFCrmCursor openISOCountryCurrencyCursorByCurrencyIdx(CFCrmAuthorization Authorization,
        short ISOCurrencyId) {
    String sql = getSqlSelectISOCountryCurrencyBuff() + "WHERE " + "iccy.ISOCurrencyId = "
            + Short.toString(ISOCurrencyId) + " " + "ORDER BY " + "iccy.ISOCountryId ASC" + ", "
            + "iccy.ISOCurrencyId ASC";
    CFCrmCursor cursor = new CFCrmDb2LUWCursor(Authorization, schema, sql);
    return (cursor);
}