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 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 mysql-connector-java-5.1.18-bin.jar to jre and jdk libs. And Here it is:
I have added my Oracle JDBC driver to my Maven repository and everything is
I am using Derby embedded driver and have added derby.jar to dependencies (I'm using
I have added gemcutter.org to my Rubygems sources, and now I do not know
I have a Java web app using JDBC created in NetBeans deployed to Tomcat
So, I have hdfs and hive working together. I also have the jdbc driver
I've created my MySQL database with MySQL Workbench, then I added MySQL JDBC Driver
I have been tried to make my first Hibernate project. I added following libraries
I have added following lines at start of %PRPOGRA~%\Notepad++\plugin\APIs\php.xml <KeyWord name=$_GET></KeyWord> <KeyWord name=$_POST></KeyWord> <KeyWord
I am trying to access Hive Metadata using JDBC. I have added all the

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.