cn.vonce.sql.service.AdvancedDbManageService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vonce-sqlbean-core Show documentation
Show all versions of vonce-sqlbean-core Show documentation
This is the core project of Sqlbean.
The newest version!
package cn.vonce.sql.service;
import java.util.List;
/**
* 数据库操作业务接口
*
* @author Jovi
* @version 1.0
* @email [email protected]
* @date 2024/6/11 16:53
*/
public interface AdvancedDbManageService extends DbManageService {
/**
* 更改表注释
*
* @param remarks 注释
* @return
*/
int alterRemarks(String remarks);
/**
* 模式列表
*
* @param name
* @return
*/
List getSchemas(String name);
/**
* 创建模式
*
* @param name
* @return
*/
int createSchema(String name);
/**
* 删除模式
*
* @param name
* @return
*/
int dropSchema(String name);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy