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

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

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

origin: hibernate/hibernate-orm

@Override
public int executeNativeUpdate(NativeSQLQuerySpecification specification, QueryParameters queryParameters) throws HibernateException {
  return delegate.executeNativeUpdate( specification, queryParameters );
}
origin: org.jboss.seam/jboss-seam

public int executeNativeUpdate(NativeSQLQuerySpecification paramNativeSQLQuerySpecification, QueryParameters paramQueryParameters) throws HibernateException
{
 return ((SessionImplementor) delegate).executeNativeUpdate(paramNativeSQLQuerySpecification, paramQueryParameters);
}
origin: riotfamily/riot

public int executeNativeUpdate(
    NativeSQLQuerySpecification specification,
    QueryParameters queryParameters) throws HibernateException {
  return session.executeNativeUpdate(specification, queryParameters);
}
origin: com.atlassian.hibernate/hibernate.adapter

@Override
public int executeNativeUpdate(final NativeSQLQuerySpecification specification, final QueryParameters queryParameters)
    throws HibernateException {
  return getSessionImplementor().executeNativeUpdate(specification, queryParameters);
}
origin: org.hibernate/com.springsource.org.hibernate

public int executeUpdate() throws HibernateException {
  Map namedParams = getNamedParams();
  before();
  try {
    return getSession().executeNativeUpdate(
        generateQuerySpecification( namedParams ),
        getQueryParameters( namedParams )
    );
  }
  finally {
    after();
  }
}
origin: org.hibernate/com.springsource.org.hibernate.core

public int executeUpdate() throws HibernateException {
  Map namedParams = getNamedParams();
  before();
  try {
    return getSession().executeNativeUpdate(
        generateQuerySpecification( namedParams ),
        getQueryParameters( namedParams )
    );
  }
  finally {
    after();
  }
}
org.hibernate.engine.spiSessionImplementorexecuteNativeUpdate

Javadoc

Execute a native SQL update or delete query

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)
  • setScale (BigDecimal)
  • putExtra (Intent)
  • Point (java.awt)
    A point representing a location in (x,y) coordinate space, specified in integer precision.
  • InputStream (java.io)
    A readable source of bytes.Most clients will use input streams that read data from the file system (
  • URLConnection (java.net)
    A connection to a URL for reading or writing. For HTTP connections, see HttpURLConnection for docume
  • Set (java.util)
    A Set is a data structure which does not allow duplicate elements.
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
  • Best plugins for Eclipse
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