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

db.sql.api.cmd.basic.IDatasetField Maven / Gradle / Ivy

package db.sql.api.cmd.basic;

import db.sql.api.Cmd;
import db.sql.api.DbType;

public interface IDatasetField> extends IField, Cmd {

    /**
     * 数据集对象 表或子表
     *
     * @return
     */
    IDataset getTable();

    /**
     * 字段名字
     *
     * @return
     */
    String getName();

    /**
     * 根据dbType处理后的对象
     *
     * @param dbType
     * @return
     */
    String getName(DbType dbType);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy