当前位置: 首页>>代码示例>>Java>>正文


Java Joinable类代码示例

本文整理汇总了Java中javax.sql.rowset.Joinable的典型用法代码示例。如果您正苦于以下问题:Java Joinable类的具体用法?Java Joinable怎么用?Java Joinable使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


Joinable类属于javax.sql.rowset包,在下文中一共展示了Joinable类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: addRowSet

import javax.sql.rowset.Joinable; //导入依赖的package包/类
@Override
public void addRowSet(Joinable rowset) throws SQLException {
    throw new UnsupportedOperationException("Not supported yet.");
}
 
开发者ID:lambdalab-mirror,项目名称:jdk8u-jdk,代码行数:5,代码来源:StubJoinRowSetImpl.java

示例2: addRowSet

import javax.sql.rowset.Joinable; //导入依赖的package包/类
public void addRowSet(Joinable rowset) throws SQLException {
    if (rowset == null || !(rowset instanceof RowSet)) {
        // rowset.33=Not a rowset
        throw new SQLException(Messages.getString("rowset.33")); //$NON-NLS-1$
    }

    RowSet currentRs = (RowSet) rowset;
    if (currentRs.getMetaData() == null) {
        // rowset.32=The given rowset is empty
        throw new SQLException(Messages.getString("rowset.32")); //$NON-NLS-1$
    }

    int matchCol = -1;
    try {
        if (rowset.getMatchColumnIndexes() != null
                && rowset.getMatchColumnIndexes().length > 0) {
            matchCol = rowset.getMatchColumnIndexes()[0];
            if (matchCol <= 0
                    || matchCol > currentRs.getMetaData().getColumnCount()) {
                matchCol = -2;
            }
        }
    } catch (SQLException e) {
        try {
            if (rowset.getMatchColumnNames() != null
                    && rowset.getMatchColumnNames().length > 0) {
                try {
                    matchCol = currentRs.findColumn(rowset
                            .getMatchColumnNames()[0]);
                } catch (SQLException e1) {
                    matchCol = -3;
                }
            }
        } catch (SQLException e2) {
            // ignore
        }
    } finally {
        if (matchCol == -1) {
            // rowset.34=Not set a match column
            throw new SQLException(Messages.getString("rowset.34")); //$NON-NLS-1$
        } else if (matchCol == -2) {
            // rowset.35=Not a valid match olumn index
            throw new SQLException(Messages.getString("rowset.35")); //$NON-NLS-1$
        } else if (matchCol == -3) {
            // rowset.1=Not a valid column name
            throw new SQLException(Messages.getString("rowset.1")); //$NON-NLS-1$
        }
    }
    addRowSet(currentRs, matchCol);
}
 
开发者ID:shannah,项目名称:cn1,代码行数:51,代码来源:JoinRowSetImpl.java


注:本文中的javax.sql.rowset.Joinable类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。