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
 Session Engine.createSession(ConnectionInfo ci)
          Open a database connection with the given connection information.
 SessionInterface SessionFactory.createSession(ConnectionInfo ci)
          Create a new session.
 SessionInterface SessionRemote.createSession(ConnectionInfo ci)
          Open a new (remote or embedded) session.
 void Session.setConnectionInfo(ConnectionInfo ci)
           
 

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

Uses of ConnectionInfo in org.h2.jdbc
 

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