Package oracle.toplink.essentials.platform.server

Examples of oracle.toplink.essentials.platform.server.NoServerPlatform


     * Create and return a new default database session.
     * Used for EJB SessionManager to instantiate a database session
     */
    public DatabaseSessionImpl() {
        super();
        this.setServerPlatform(new NoServerPlatform(this));
    }
View Full Code Here


     * method may also be used to connect the session, this allows for the user name and password
     * to be given at login but for the other database information to be provided when the session is created.
     */
    public DatabaseSessionImpl(oracle.toplink.essentials.sessions.Project project) {
        super(project);
        this.setServerPlatform(new NoServerPlatform(this));
    }
View Full Code Here

TOP

Related Classes of oracle.toplink.essentials.platform.server.NoServerPlatform

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.