Question:

Netbeans 5.5.1 BlueJ?

by  |  earlier

0 LIKES UnLike

Hi can anyone tell me how do i connect Netbeans to a database - MS Office. And how can i show the data in the data base and search through the data using Netbeans.

 Tags:

   Report

2 ANSWERS


  1. Online Information:

    It also provides useful Tutorials, Software, College and university, Career and raining, Online Degree, Oracle, C and C++, Java, J2EE, VB, ASP.NET, Unix, SQL,DOTNET, Project and Programming, News and Mgazine, Jobs,  Fashion and Design, Dating and s*x, Chattings. Browse our resources or just try the search! http://informationinonline.blogspot.com/

    Online Shopping:

    http://shoppingsinonline.blogspot.com/


  2. You need JDBC sunshine, Java Database Connectivity. The method will be something like:

    Connection conn = DriverManager.getConnection

    ("jdbc:oracle:thin:@hostname:1521:dbna...

    Statement stmt = conn.createStatement();

    ResultSet rset = stmt.executeQuery("select value from table");

    while (rset.next())

    // System.out.println (rset.getString("value"));

    // stmt.close();

    }
You're reading: Netbeans 5.5.1 BlueJ?

Question Stats

Latest activity: earlier.
This question has 2 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.