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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T11:10:41+00:00 2026-06-15T11:10:41+00:00

How to add all the databases from server to String array in java? I

  • 0

How to add all the databases from server to String array in java? I am using JOOQ api to execute SQL statements and i need to get all the databases in comboBox where i can select specific database.

  • 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-06-15T11:10:43+00:00Added an answer on June 15, 2026 at 11:10 am

    You have several options. For instance, you could use the generated
    classes from jOOQ-meta (or generate the information_schema yourself),
    and then write:

    Factory create = new Factory(connection, dialect);
    String[] array =
    create.selectDistinct(TABLES.TABLE_SCHEMA)
          .from(TABLES)
          .fetchArray(TABLES.TABLE_SCHEMA);
    

    The same can be achieved through plain SQL, of course:

    String[] array =
    create.selectDistinct(field("table_schema"))
          .from("information_schema.TABLES") // Watch for case-sensitivity on MySQL
          .fetchArray(0, String.class);
    

    Or, using the SHOW TABLES command:

    String[] array =
    create.fetch("SHOW TABLES")
          .intoArray(0, String.class);
    

    Another option would be to read from JDBC’s DatabaseMetaData:

    Connection connection = ...;
    DatabaseMetaData meta = connection.getMetaData();
    String[] array = create.fetch(meta.getSchemas()).intoArray(0, String.class);
    

    In jOOQ 3.0, you will also be able to read the meta data through the jOOQ API:

    List<Schema> schemas = create.meta().getSchemas();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to add all the keys from the dictionary to the array. This
I'm working with two databases. From 1st database in the server I'm taking all
how can i add all swf files from dir to player in vb by
How can I add all of my array values together in PHP? Is there
I'm trying to create an array in MIPS Assembly, and then add all the
I have two databases in MySQL and SQL Server , and I want to
I'm having trouble seeing tables from one particular SQL Server 2008 database while trying
Using Entity Designer in VS2010 to build a database for SQL Server 2005. Having
I'm attempting to connect to a SQL Server Compact Edition database from F#, and
i'd like to add all or most of my mouse events to stage, but

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.