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

com.github.nikyotensai.config.rules.QuerySQL Maven / Gradle / Ivy

The newest version!
package com.github.nikyotensai.config.rules;

import lombok.AllArgsConstructor;
import lombok.Getter;

/**
 * 

* 表数据查询 *

*/ @AllArgsConstructor @Getter public enum QuerySQL { MYSQL("mysql", "show tables", "show table status", "show full fields from %s", "NAME", "COMMENT", "FIELD", "TYPE", "COMMENT", "KEY"), ; private final String dbType; private final String tablesSql; private final String tableCommentsSql; private final String tableFieldsSql; private final String tableName; private final String tableComment; private final String fieldName; private final String fieldType; private final String fieldComment; private final String fieldKey; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy