Class ConnectionInfo

java.lang.Object
org.h2.server.web.ConnectionInfo
All Implemented Interfaces:
Comparable<ConnectionInfo>

public class ConnectionInfo extends Object implements Comparable<ConnectionInfo>
The connection info object is a wrapper for database connection information such as the database URL, user name and password. This class is used by the H2 Console.
  • Field Details

    • driver

      public String driver
      The driver class name.
    • url

      public String url
      The database URL.
    • user

      public String user
      The user name.
    • name

      String name
      The connection display name.
    • lastAccess

      int lastAccess
      The last time this connection was used.
  • Constructor Details

    • ConnectionInfo

      ConnectionInfo()
    • ConnectionInfo

      public ConnectionInfo(String data)
  • Method Details