Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6690531
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T05:38:52+00:00 2026-05-26T05:38:52+00:00

I have a Solid Database. And I want to connect to this DB by

  • 0

I have a Solid Database. And I want to connect to this DB by JDBC. How can I get URL for connection creation?

[EDIT]

For more information:
SOLID JDBC Driver
Programmer’s Guide

SOLID JDBC Driver 2.3 Readme

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T05:38:53+00:00Added an answer on May 26, 2026 at 5:38 am

    Registering JDBC Driver

    The JDBC driver manager, which is written entirely in Java, handles loading and unloading drivers and interfacing connection requests with the appropriate driver. It was JavaSoft’s intention to make the use of a specific JDBC driver as transparent as possible to the programmer and user.

    The driver can be registered with the three alternative ways, which are shown below. The parameter required by Class.forName and Properties.put functions is the name of the driver, which is solid.jdbc.SolidDriver.

    // registration using Class.forName service
    Driver)Class.forName("solid.jdbc.SolidDriver")
    
    // a workaround to a bug in some JDK1.1 implementations
    Driver d = (Driver)Class.forName("solid.jdbc.SolidDriver").newInstance();
    
    // Registration using system properties variable also
    Properties p = System.getProperties();
    p.put("jdbc.drivers", "solid.jdbc.SolidDriver");
    System.setProperties(p);
    

    Connecting to the database

    Once the driver is succesfully registered with the driver manager a connection is established by creating a Java Connection object with the following code. The parameter required by the DriverManager.getConnection function is the JDBC connection string.

    Connection conn = null;
    try {
        conn = DriverManager.getConnection(sCon);
    }
    catch (Exception e) {
        System.out.println("Connect failed : " + e.getMessage());
        throw new Exception("Halted.");
    }
    

    The connect string structure is jdbc:solid://://. The string “jdbc:solid://fb9:1314/dba/dba” attempts to connect a SOLID Server in machine fb9 listening tcp/ip protocol at port 1314.

    The application can establish several Connection objects to database. Connections can be closed be the following code.

    conn.close();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a window with a solid border around it. How can I remove
I have this code: $(div[id^='intCell']).mouseover(function() { $(this).css({ border:,1px solid #ff097c}); }).mouseout(function() { $(this).css({border:,1px solid
For example I have a css style like this : input.validation-passed {border: 1px solid
I have a SQL Server 2008 database that has a Trigger. This trigger is
So the scenario is this: I have a mySQL database on a local server
I have this asp.net code: @foreach( var database in Model) { if (!(firstTime ==
I have a local database and I want to be able to retrieve and
I have a solid understanding of most OOP theory but the one thing that
Does anyone have a solid benchmark about the speed of parsing PHP code comments?
I feel that my shop has a hole because we don't have a solid

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.