solidDB Help : Programming : solidDB JDBC driver : solidDB JDBC driver extensions : Non-standard JDBC connection properties : Shared Memory Access connection property
  
Shared Memory Access connection property
You can configure the JDBC connection to a Shared Memory Access (SMA) server to be a local (rather than RPC-based) connection by using the following connection property:
See
solid_shared_memory on page 1906
Example
Properties props = new Properties();
// enable the direct access property
props.put("solid_shared_memory", "yes");
// get connection
Connection c = DriverManager.getConnection
("jdbc:solid://localhost:1315", props);
For more details, see Making local JDBC connections to SMA servers.
Go up to
Non-standard JDBC connection properties