solidDB Help : Configuring and administering : Managing network connections : Connect strings for JDBC clients
  
Connect strings for JDBC clients
For JDBC connections to the solidDB server, you need to use a JDBC connection string (JDBC url) that specifies the hostname of the computer where the solidDB server is running and the port number on which the solidDB server is listening for connections.
The syntax of the JDBC URL (connection string) for the solidDB server is:
jdbc:solid://hostname:port/username/password
    [?property-name=value]...
The port must match the port number that the server is using in its network listening name (Com.Listen).
For example:
#server-side solid.ini
[Com]
Listen = tcp 2315
jdbc:solid://localhost:2315/dba/dba
For information about using a JDBC connection to a grid environment, see Connecting to a grid.
For more information about JDBC connections, see solidDB JDBC driver.
See
Using SSL to encrypt the network connection between a JDBC client and a server
Go up to
Managing network connections