Tabnine Logo
SessionImplementor.createNativeQuery
Code IndexAdd Tabnine to your IDE (free)

How to use
createNativeQuery
method
in
org.hibernate.engine.spi.SessionImplementor

Best Java code snippets using org.hibernate.engine.spi.SessionImplementor.createNativeQuery (Showing top 9 results out of 315)

origin: hibernate/hibernate-orm

@Override
public NativeQueryImplementor createNativeQuery(String sqlString, Class resultClass) {
  return delegate.createNativeQuery( sqlString, resultClass );
}
origin: hibernate/hibernate-orm

@Override
public NativeQueryImplementor createNativeQuery(String sqlString, String resultSetMapping) {
  return delegate.createNativeQuery( sqlString, resultSetMapping );
}
origin: hibernate/hibernate-orm

@Override
public NativeQueryImplementor createNativeQuery(String sqlString) {
  return delegate.createNativeQuery( sqlString );
}
origin: org.hibernate.orm/hibernate-core

@Override
public NativeQueryImplementor createNativeQuery(String sqlString, String resultSetMapping) {
  return delegate.createNativeQuery( sqlString, resultSetMapping );
}
origin: org.hibernate.orm/hibernate-core

@Override
public NativeQueryImplementor createNativeQuery(String sqlString) {
  return delegate.createNativeQuery( sqlString );
}
origin: org.hibernate.orm/hibernate-core

@Override
public NativeQueryImplementor createNativeQuery(String sqlString, Class resultClass) {
  return delegate.createNativeQuery( sqlString, resultClass );
}
origin: com.atlassian.hibernate/hibernate.adapter

@Override
@SuppressWarnings("unchecked")
public NativeQueryImplementor createNativeQuery(final String sqlString, final Class resultClass) {
  return getSessionImplementor().createNativeQuery(sqlString, resultClass);
}
origin: com.atlassian.hibernate/hibernate.adapter

@Override
public NativeQueryImplementor createNativeQuery(final String sqlString) {
  return getSessionImplementor().createNativeQuery(sqlString);
}
origin: com.atlassian.hibernate/hibernate.adapter

@Override
public NativeQueryImplementor createNativeQuery(final String sqlString, final String resultSetMapping) {
  return getSessionImplementor().createNativeQuery(sqlString, resultSetMapping);
}
org.hibernate.engine.spiSessionImplementorcreateNativeQuery

Popular methods of SessionImplementor

  • getFactory
    Get the creating SessionFactoryImplementor
  • getTransactionCoordinator
  • connection
  • getPersistenceContext
    Get the persistence context for this session
  • getLoadQueryInfluencers
    Get the load query influencers associated with this session.
  • isTransactionInProgress
    Does this Session have an active Hibernate transaction or is there a JTA transaction in progress?
  • getEntityPersister
    Get the EntityPersister for any instance
  • getJdbcCoordinator
  • isClosed
    Determine whether the session is closed. Provided separately from #isOpen() as this method does not
  • flush
  • getTenantIdentifier
    Match te method on org.hibernate.Session and org.hibernate.StatelessSession
  • generateEntityKey
  • getTenantIdentifier,
  • generateEntityKey,
  • getContextEntityIdentifier,
  • isOpen,
  • bestGuessEntityName,
  • getFlushMode,
  • getSessionFactory,
  • guessEntityName,
  • immediateLoad,
  • initializeCollection

Popular in Java

  • Making http post requests using okhttp
  • setContentView (Activity)
  • getApplicationContext (Context)
  • setRequestProperty (URLConnection)
  • BufferedInputStream (java.io)
    A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the i
  • URL (java.net)
    A Uniform Resource Locator that identifies the location of an Internet resource as specified by RFC
  • Permission (java.security)
    Legacy security code; do not use.
  • JarFile (java.util.jar)
    JarFile is used to read jar entries and their associated data from jar files.
  • JTable (javax.swing)
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • Top PhpStorm plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now