jaskell.sql.JDBCParameter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jaskell-java8 Show documentation
Show all versions of jaskell-java8 Show documentation
This is a utils library for java 8 project.
It include parsec combinators and sql generators library.
package jaskell.sql;
import jaskell.script.Parameter;
public class JDBCParameter extends Parameter {
// TODO: constructors type safe;
@SuppressWarnings("unchecked")
public JDBCParameter(Object key) {
super("?", key, (Class) Object.class);
}
public JDBCParameter(Object key, Class cls) {
super("?", key, cls);
}
public JDBCParameter(String placeHolder, Object key) {
super(placeHolder, key, (Class) Object.class);
}
public JDBCParameter(String placeHolder, Object key, Class cls) {
super(placeHolder, key, cls);
}
// TODO: value setters type safe;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy