本文整理匯總了Java中com.taobao.tddl.executor.rowset.RowSetWrapper類的典型用法代碼示例。如果您正苦於以下問題:Java RowSetWrapper類的具體用法?Java RowSetWrapper怎麽用?Java RowSetWrapper使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
RowSetWrapper類屬於com.taobao.tddl.executor.rowset包,在下文中一共展示了RowSetWrapper類的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: IRowSetWrapperToArrayRowSet
import com.taobao.tddl.executor.rowset.RowSetWrapper; //導入依賴的package包/類
/**
* 將Wrapper實際包含的rowset中的代理去掉
*
* @param rsrs
* @return
*/
private static IRowSet IRowSetWrapperToArrayRowSet(RowSetWrapper rsrs) {
if (rsrs == null) {
return null;
}
IRowSet irs = rsrs.getParentRowSet();
if (irs instanceof ResultSetRowSet) {
List<Object> values = rsrs.getValues();
IRowSet rs = new ArrayRowSet(irs.getParentCursorMeta(), values.toArray(), rsrs.getBytes());
rsrs.setParentRowSet(rs);
} else if (irs instanceof RowSetWrapper) {
IRowSetWrapperToArrayRowSet((RowSetWrapper) irs);
}
return rsrs;
}
示例2: IRowSetWrapperToArrayRowSet
import com.taobao.tddl.executor.rowset.RowSetWrapper; //導入依賴的package包/類
/**
* 將Wrapper實際包含的rowset中的代理去掉
*
* @param rsrs
* @return
*/
private static IRowSet IRowSetWrapperToArrayRowSet(RowSetWrapper rsrs) {
if (rsrs == null) {
return null;
}
IRowSet irs = rsrs.getParentRowSet();
if (irs instanceof ResultSetRowSet) {
List<Object> values = rsrs.getValues();
IRowSet rs = new ArrayRowSet(irs.getParentCursorMeta(), values.toArray());
rsrs.setParentRowSet(rs);
} else if (irs instanceof RowSetWrapper) {
IRowSetWrapperToArrayRowSet((RowSetWrapper) irs);
}
return rsrs;
}
示例3: fromIRowSetToArrayRowSet
import com.taobao.tddl.executor.rowset.RowSetWrapper; //導入依賴的package包/類
public static IRowSet fromIRowSetToArrayRowSet(IRowSet rsrs) {
// 初衷是為了讓mysql的代理換成實際數據
if (rsrs == null) {
return null;
}
if (rsrs instanceof ResultSetRowSet) {
List<Object> values = rsrs.getValues();
IRowSet rs = new ArrayRowSet(rsrs.getParentCursorMeta(), values.toArray(), rsrs.getBytes());
return rs;
} else if (rsrs instanceof RowSetWrapper) {
return IRowSetWrapperToArrayRowSet((RowSetWrapper) rsrs);
} else {
return rsrs;
}
}
示例4: replaceAliasAndSelect
import com.taobao.tddl.executor.rowset.RowSetWrapper; //導入依賴的package包/類
private IRowSet replaceAliasAndSelect(IRowSet ir) throws TddlException {
if (ir == null) {
return null;
}
initAliasSchema(retColumns, tableAlias, ir.getParentCursorMeta());
IRowSet ret = new RowSetWrapper(newMeta, ir);
return ret;
}
示例5: fromIRowSetToArrayRowSet
import com.taobao.tddl.executor.rowset.RowSetWrapper; //導入依賴的package包/類
public static IRowSet fromIRowSetToArrayRowSet(IRowSet rsrs) {
// 初衷是為了讓mysql的代理換成實際數據
if (rsrs == null) {
return null;
}
if (rsrs instanceof ResultSetRowSet) {
List<Object> values = rsrs.getValues();
IRowSet rs = new ArrayRowSet(rsrs.getParentCursorMeta(), values.toArray());
return rs;
} else if (rsrs instanceof RowSetWrapper) {
return IRowSetWrapperToArrayRowSet((RowSetWrapper) rsrs);
} else {
return rsrs;
}
}
示例6: replaceAliasAndSelect
import com.taobao.tddl.executor.rowset.RowSetWrapper; //導入依賴的package包/類
private IRowSet replaceAliasAndSelect(IRowSet ir) {
if (ir == null) {
return null;
}
initAliasSchema(retColumns, tableAlias, ir.getParentCursorMeta());
IRowSet ret = new RowSetWrapper(newMeta, ir);
return ret;
}