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 7495419
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T18:07:15+00:00 2026-05-29T18:07:15+00:00

I created a connection with a data base with Java and I would like

  • 0

I created a connection with a data base with Java and I would like to display data from two tables.

In the query statement I used a JOIN command but i am struggling with a syntax error.
Was hoping for some advice in regards to this.

try
    {
        Class.forName(driverName);
        connection = DriverManager.getConnection(SourceURL, user, password);


        Statement listDisplay = connection.createStatement();
        ResultSet displayAll = listDisplay.executeQuery("SELECT AnimalType.typeID, AnimalType.description, Animal.name "
                                                     +"FROM Animal "
                                                     +"JOIN AnimalType "       
                                                     +"ON AnimalType.typeID = Animal.typeIDForeign");  
        while(displayAll.next())
        {
            int typeId = displayAll.getInt(1);
            String description = displayAll.getString(2);
            String name = displayAll.getString(3);

            System.out.println(typeId + " " + description + " " + name);
        }

        connection.close();

        }
        catch(SQLException sql)
        {
            JOptionPane.showMessageDialog(null, sql.toString());
        }
        catch(ClassNotFoundException exe)
        {
            JOptionPane.showMessageDialog(null, exe.toString());
        }

Will it work what I am trying to do here.?

regards
Arian

  • 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-29T18:07:24+00:00Added an answer on May 29, 2026 at 6:07 pm

    I normally do it somewhat like this:

    if (displayAll.first())
    {
        do
        {
            int typeId = displayAll.getInt(1);
            String description = displayAll.getString(2);
            String name = displayAll.getString(3);
    
            System.out.println(typeId + " " + description + " " + name);
        } while(displayAll.next());
    }
    displayAll.close();
    listDisplay.close();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to create/drop a database from clojure.java.jdbc. This fails: (require '[clojure.java.jdbc :as
On the class level, I have created reference: System::Data::Odbc::OdbcConnection Connection; in some method I
I am trying to use the H2 database from a Java application. I created
I'm new to REST on Java and I would like to create simple REST
I created a web application that edit a database... I would like to know
Perhaps naively, I created a class (AdminDatabase) to handle connection to different MS-Access database
I'm trying to create a TCP connection and send/read data that uses SSL, but
How to set compression method for SSL/TLS connection created with M2Crypto and TwistedProtocolWrapper
I recently started backend programming with Java servlets to access data for intranet webapps.
I would like to create an in-memory database for testing purposes using Derby/JavaDB. I

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.