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

  • Home
  • SEARCH
  • 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 3317050
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T22:32:31+00:00 2026-05-17T22:32:31+00:00

I have added the jdbc driver to my classpath as far as I know

  • 0

I have added the jdbc driver to my classpath as far as I know i.e. I added the following to my .profile

export CLASSPATH=$CLASSPATH:location/to/the/jarfile.jar

When I compile my java program I always get this error

javac v9.java
v9.java:8: <identifier> expected
 Class.forName("org.postgresql.Driver");//load the driver
          ^
v9.java:8: illegal start of type
 Class.forName("org.postgresql.Driver");//load the driver
           ^
2 errors

This is driving me insane, any help would be awesome. I’m using Mac OS X Snow Leopard

The java program is here

import java.sql.*;

public class v9
{
 String dbURL = "jdbc:postgresql:mydb";
 String user = "UserName";
 String password = "pswd";
 C  try
{
Class.forName("org.postgresql.Driver");//load the driver
// Connect to the database
Connection DBconn = DriverManager.getConnection( dbURL, user, password );
}
catch (Exception e)
{
    e.printStackTrace();
}
}
  • 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-17T22:32:32+00:00Added an answer on May 17, 2026 at 10:32 pm

    Try this – you need a method somewhere:

    import java.sql.Connection;
    import java.sql.DriverManager;
    
    public class V9
    {
        public static final String driver = "org.postgresql.Driver";
        public static final String url = "jdbc:postgresql://localhost:5432/party";
        public static final String username = "pgsuper";
        public static final String password = "pgsuper";
    
        public static void main(String [] args)
        {
            try
            {
                Class.forName(driver);
                Connection conn = DriverManager.getConnection(url, username, password);
                System.out.println(conn.getMetaData().getDatabaseProductName());
            }
            catch (Exception e)
            {
                e.printStackTrace();
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have added my Oracle JDBC driver to my Maven repository and everything is
I have a java program that connects to a MySql database and it's working
I have added the frameworks (MapKit and CoreLocation) by selecting the Frameworks folder, right
I have added some backgrounds on stage and then on top of that adding
I have added locations into Eclipse so I can, say, create projects from SVN
I have added a partial class to one generated by the Entity Framework. I
I am trying to change my web-app's JDBC code to JPA using Hibernate as
package myfirst; import org.apache.poi.hssf.usermodel.*; import org.apache.poi.ss.usermodel.*; import java.io.FileInputStream; import java.lang.Iterable; import java.net.URL; import java.net.URLConnection;
Here is my hibernate config, but for some reason it fails to load those
I've successfully connected to MySQL database through Eclipse without getting tomcat involved, so at

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.