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.cfasterisk.v2_4.CFAsteriskMySql.CFAsteriskMySqlISOCountryCurrencyTable.java

public CFSecurityCursor openISOCountryCurrencyCursorByCurrencyIdx(CFSecurityAuthorization Authorization,
        short ISOCurrencyId) {
    String sql = getSqlSelectISOCountryCurrencyBuff() + "WHERE " + "iccy.ISOCurrencyId = "
            + Short.toString(ISOCurrencyId) + " " + "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 openISOCountryLanguageCursorByLanguageIdx(CFSecurityAuthorization Authorization,
        short ISOLanguageId) {
    String sql = getSqlSelectISOCountryLanguageBuff() + "WHERE " + "iscl.ISOLanguageId = "
            + Short.toString(ISOLanguageId) + " " + "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 openISOCountryCurrencyCursorByCurrencyIdx(CFSecurityAuthorization Authorization,
        short ISOCurrencyId) {
    String sql = getSqlSelectISOCountryCurrencyBuff() + "WHERE " + "iccy.ISOCurrencyId = "
            + Short.toString(ISOCurrencyId) + " " + "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 openISOCountryLanguageCursorByLanguageIdx(CFSecurityAuthorization Authorization,
        short ISOLanguageId) {
    String sql = getSqlSelectISOCountryLanguageBuff() + "WHERE " + "iscl.ISOLanguageId = "
            + Short.toString(ISOLanguageId) + " " + "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 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 CFAstSybaseCursor(Authorization, schema, sql);
    return (cursor);
}

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

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

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

From source file:net.sourceforge.msscodefactory.cfasterisk.v2_0.CFAstDb2LUW.CFAstDb2LUWISOCountryCurrencyTable.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 CFAstDb2LUWCursor(Authorization, schema, sql);
    return (cursor);
}

From source file:net.sourceforge.msscodefactory.cfasterisk.v2_0.CFAstDb2LUW.CFAstDb2LUWISOCountryLanguageTable.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 CFAstDb2LUWCursor(Authorization, schema, sql);
    return (cursor);
}