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

com.notronix.hibermate.api.DBQuery Maven / Gradle / Ivy

package com.notronix.hibermate.api;

import org.hibernate.Session;
import org.hibernate.query.NativeQuery;

public interface DBQuery
{
    String getQuery();
    void setQuery(String query);

    Object getParameter(String name);
    void setParameter(String name, Object value);

     NativeQuery getQuery(Session session, Class resultType);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy