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

com.jpattern.orm.script.IParser Maven / Gradle / Ivy

There is a newer version: 3.5.1
Show newest version
package com.jpattern.orm.script;

import java.io.IOException;

/**
 * 
 * @author Francesco Cina
 *
 * 01/lug/2011
 */
public interface IParser {

	/**
	 * Parse the script using the default symbol ";" to identify the sql statements
	 * @param parserCallback
	 * @throws IOException
	 */
	void parse( IParserCallback parserCallback ) throws IOException;

	/**
	 * Parse the script using a custom symbol to identify the sql statements
	 * @param parserCallback
	 * @param spearatorSymbol a custom separator symbol
	 * @throws IOException
	 */
	void parse(IParserCallback parserCallback, String spearatorSymbol) throws IOException;
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy