All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sagacity.sqltoy.link.TreeTable Maven / Gradle / Ivy

There is a newer version: 5.6.31.jre8
Show newest version
/**
 * 
 */
package org.sagacity.sqltoy.link;

import javax.sql.DataSource;

import org.sagacity.sqltoy.SqlToyContext;
import org.sagacity.sqltoy.model.TreeTableModel;

/**
 * @project sagacity-sqltoy
 * @description 树形表封装操作
 * @author zhongxuchen
 * @version v1.0,Date:2017年10月9日
 */
public class TreeTable extends BaseLink {
	/**
	 * 
	 */
	private static final long serialVersionUID = 2471677449407100687L;
	/**
	 * 树结构表模型
	 */
	private TreeTableModel treeModel;

	/**
	 * @param sqlToyContext
	 * @param dataSource
	 */
	public TreeTable(SqlToyContext sqlToyContext, DataSource dataSource) {
		super(sqlToyContext, dataSource);
	}

	public TreeTable dataSource(DataSource dataSource) {
		this.dataSource = dataSource;
		this.defaultDataSource = false;
		return this;
	}

	public TreeTable treeModel(TreeTableModel treeModel) {
		this.treeModel = treeModel;
		return this;
	}

	/**
	 * @todo 提交执行并返回是否成功
	 * @return
	 */
	public boolean submit() {
		if (treeModel == null) {
			throw new IllegalArgumentException("treeTable wrap:treeModel is null!");
		}
		return dialectFactory.wrapTreeTableRoute(sqlToyContext, treeModel, getDataSource(null));
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy