Uses of Class
org.h2.engine.ConnectionInfo

Packages that use ConnectionInfo
org.h2.engine Contains high level classes of the database and classes that don't fit in another sub-package. 
org.h2.jdbc Implementation of the JDBC API (package java.sql). 
 

Uses of ConnectionInfo in org.h2.engine
 

Methods in org.h2.engine with parameters of type ConnectionInfo
 SessionInterface SessionRemote.createSession(ConnectionInfo ci)
           
 SessionInterface SessionFactory.createSession(ConnectionInfo ci)
          Create a new session.
 SessionInterface SessionFactoryEmbedded.createSession(ConnectionInfo ci)
           
 Session Engine.getSession(ConnectionInfo ci)
          Open a database connection with the given connection information.
 void Session.setConnectionInfo(ConnectionInfo ci)
           
 

Constructors in org.h2.engine with parameters of type ConnectionInfo
Database(java.lang.String name, ConnectionInfo ci, java.lang.String cipher)
           
 

Uses of ConnectionInfo in org.h2.jdbc
 

Constructors in org.h2.jdbc with parameters of type ConnectionInfo
JdbcConnection(ConnectionInfo ci, boolean useBaseDir)
          INTERNAL