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"));
}