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

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

There is a newer version: 1.7.6-RC2
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy