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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T22:15:43+00:00 2026-05-10T22:15:43+00:00

Since I’ve started using NetBeans, I’ve learned of some powerful ways to abstract away

  • 0

Since I’ve started using NetBeans, I’ve learned of some powerful ways to abstract away the process of creating Java database applications with automatically generated UI, beans bindings, and a bunch of other stuff I only vaguely understand the workings of at the moment (I hate being a newb). Problem is, how do I do the basic stuff I actually want to do? The tutorials I’ve read make a big deal about being able to connect to and mess around with a database from within the IDE, or how to create and bind some UI sliders and checkboxes to table columns, etc. But where can I learn about how to make my own code do that stuff? Abstraction is nice and all, but it’s quite useless to me at the moment for what I need done.

Can anyone refer me to some good resources or tutorials to learn this? The few I’ve found aren’t proving as useful as I’d hoped to get my project underway…

  • 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. 2026-05-10T22:15:43+00:00Added an answer on May 10, 2026 at 10:15 pm

    The JDBC Tutorial is a good starting point

    A snippet from the intro

     The JDBC API is a Java API that can access any kind of tabular data,  especially data stored in a Relational Database.  JDBC helps you to write java applications that manage these three programming  activities:     1. Connect to a data source, like a database    2. Send queries and update statements to the database    3. Retrieve and process the results received from the database in answer to        your query        The following simple code fragment gives a simple example of these three steps: 
      Connection con = DriverManager.getConnection              ( 'jdbc:myDriver:wombat', 'myLogin','myPassword');    Statement stmt = con.createStatement();   ResultSet rs = stmt.executeQuery('SELECT a, b, c FROM Table1');   while (rs.next()) {     int x = rs.getInt('a');     String s = rs.getString('b');     float f = rs.getFloat('c');   } 
           This short code fragment instantiates a DriverManager object to  connect to a database driver and log into the database, instantiates a  Statement object that carries your SQL language query to the database;  instantiates a ResultSet object that retrieves the results of your query,  and executes a simple while loop, which retrieves and displays those  results. It's that simple.  

    There is also a book preview on Google Books here.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 267k
  • Answers 267k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer No need for SYS_CONTEXT or cursor definitions. You do need… May 13, 2026 at 12:50 pm
  • Editorial Team
    Editorial Team added an answer resetForm is part of the object returned by the validate… May 13, 2026 at 12:50 pm
  • Editorial Team
    Editorial Team added an answer Well, the "select" part will be removed by the compiler… May 13, 2026 at 12:50 pm

Related Questions

Is it possible to replace javascript w/ HTML if JavaScript is not enabled on
Since I started studying object-oriented programming, I frequently read articles/blogs saying functions are better,
Since I'm not a huge fan of any of the current solutions for managing
Since I didn't do a good job writing the last question, and most of
Since I've joined twitter I have found it very helpful to keep my finger

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.