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

org.sagacity.sqltoy.plugins.ddl.impl.DefaultDDLGenerator Maven / Gradle / Ivy

There is a newer version: 5.6.31.jre8
Show newest version
/**
 * 
 */
package org.sagacity.sqltoy.plugins.ddl.impl;

import org.sagacity.sqltoy.model.TableMeta;
import org.sagacity.sqltoy.plugins.ddl.DialectDDLGenerator;

/**
 * @project sagacity-sqltoy
 * @description 提供默认DDL未实现提示
 * @author zhongxuchen
 * @version v1.0, Date:2023年12月21日
 * @modify 2023年12月21日,修改说明
 */
public class DefaultDDLGenerator implements DialectDDLGenerator {

	@Override
	public String createTableSql(TableMeta tableMeta, String schema, int dbType) {
		throw new RuntimeException("该方言还未提供DDL产生的实现,请通过spring.sqltoy.dialectDDLGenerator=xxxxx 形式提供自定义实现!");
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy