Codota Logo
SessionImplementor.createNativeQuery
Code IndexAdd Codota 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)

  • Common ways to obtain SessionImplementor
private void myMethod () {
SessionImplementor s =
  • Codota IconEntityManager entityManager;entityManager.unwrap(SessionImplementor.class)
  • Codota IconFlushEntityEvent flushEntityEvent;flushEntityEvent.getSession()
  • Codota IconLazyInitializer lazyInitializer;lazyInitializer.getSession()
  • Smart code suggestions by Codota
}
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

  • Updating database using SQL prepared statement
  • requestLocationUpdates (LocationManager)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • notifyDataSetChanged (ArrayAdapter)
  • FileWriter (java.io)
    Convenience class for writing character files. The constructors of this class assume that the defaul
  • SocketException (java.net)
    This SocketException may be thrown during socket creation or setting options, and is the superclass
  • BitSet (java.util)
    This class implements a vector of bits that grows as needed. Each component of the bit set has a boo
  • NoSuchElementException (java.util)
    Thrown when trying to retrieve an element past the end of an Enumeration or Iterator.
  • Cipher (javax.crypto)
    This class provides access to implementations of cryptographic ciphers for encryption and decryption
  • Option (scala)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now