public List<String> getAllTableNameList(){}
public Set<String> getColumnNameList(String tableName){}
public List<NeoColumn> getColumnList(String tableName){}
public List<Index> getIndexList(String tableName){}
public List<String> getIndexNameList(String tableName){}
/**
* 获取创建sql的语句
* {@code
* create table xxx{
* id xxxx;
* } comment ='xxxx';
* }
*
* @param tableName 表名
* @return 表的创建语句
*/
public String getTableCreate(String tableName){
return (String) (execute("show create table `" + tableName + "`").get(0).get(0).get("Create Table"));
}
该功能是一个很不错的功能,在进行动态化分表的时候,获取原表的创建语句,修改表名,然后再配合execute执行创建表语句,则可以创建新的表,即可以实现动态的分库分表(其中动态化是利用自己开发的分布式配置中心的配置热启动功能,该分布式配置中心请见这里)。