BEA Systems, Inc.

weblogic.ejb
Interface QueryHome

All Superinterfaces:
EJBHome, Remote

public interface QueryHome
extends EJBHome


Method Summary
 Query createQuery()
          Creates a query that doesn't take input parameters.
 Query createSqlQuery()
          Creates a query that doesn't take input parameters.
 String getDatabaseProductName()
           
 String getDatabaseProductVersion()
           
 String nativeQuery(String ejbql)
          Returns the result of calling JDBC's nativeSQL() method.
 PreparedQuery prepareQuery(String ejbql)
          Creates a prepared query that takes input parameters.
 PreparedQuery prepareQuery(String ejbql, Properties props)
          Creates a prepared query that takes input parameters and properties
 
Methods inherited from interface javax.ejb.EJBHome
getEJBMetaData, getHomeHandle, remove, remove
 

Method Detail

createQuery

Query createQuery()
                  throws RemoteException
Creates a query that doesn't take input parameters. Use this method to create a Query object that executes EJB QL queries.

Throws:
RemoteException

prepareQuery

PreparedQuery prepareQuery(String ejbql)
                           throws RemoteException
Creates a prepared query that takes input parameters.

Throws:
RemoteException

prepareQuery

PreparedQuery prepareQuery(String ejbql,
                           Properties props)
                           throws RemoteException
Creates a prepared query that takes input parameters and properties

Throws:
RemoteException

createSqlQuery

Query createSqlQuery()
                     throws RemoteException
Creates a query that doesn't take input parameters. Use this method to create a Query object that executes SQL queries.

Throws:
RemoteException

nativeQuery

String nativeQuery(String ejbql)
                   throws RemoteException
Returns the result of calling JDBC's nativeSQL() method.

Throws:
RemoteException

getDatabaseProductName

String getDatabaseProductName()
                              throws RemoteException
Throws:
RemoteException

getDatabaseProductVersion

String getDatabaseProductVersion()
                                 throws RemoteException
Throws:
RemoteException

Documentation is available at
http://download.oracle.com/docs/cd/E13222_01/wls/docs92
Copyright 2006 BEA Systems Inc.