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

cc.iliz.mybatis.shading.sqltable.InsertSqlTableParser Maven / Gradle / Ivy

There is a newer version: 2.2.2
Show newest version
package cc.iliz.mybatis.shading.sqltable;

import java.util.regex.Pattern;

public class InsertSqlTableParser extends BaseSqlTableParser {

	@Override
	public Pattern getRegPattern() {
		return Pattern.compile("insert\\s+into\\s+(\\w+)",Pattern.CASE_INSENSITIVE);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy