Search:

Type: Posts; User: drimades

Search: Search took 0.38 seconds.

  1. Replies
    4
    Views
    1,934

    [SOLVED] Re: Creating database issue

    String host = "jdbc:derby://localhost:1527/TownHall; create = true";
    String uName = "yyy";
    String uPass= "1";
    try{
    Connection con = DriverManager.getConnection(...
  2. Replies
    1
    Views
    1,726

    Deploying db application

    In NetBeans I prepared a database application with MySQL. After I make a Clean & Build, which files do I need to copy to another computer to make the application execute correctly? Do I need to run a...
  3. Replies
    4
    Views
    1,934

    [SOLVED] Creating database issue

    With all the tutorial that show how to create a JavaDB database in NetBeans, i.e. Working with the Java DB (Derby) Database - NetBeans IDE Tutorial
    it connects to the database with...
  4. Replies
    1
    Views
    1,821

    [SOLVED] Not finding main class

    My application executes smoothly when I Run the project from Netbeans. After a Clean & Build I tried:

    java -jar "/home/eus/NetBeansProjects/HimaraTest/dist/HimaraTest.jar"

    and strangely it...
  5. Replies
    4
    Views
    2,675

    [SOLVED] Re: Exporting recordset to xls spreadsheet

    I'm not able to find the relevant POI jar file. Any help?
  6. Replies
    4
    Views
    2,675

    [SOLVED] Exporting recordset to xls spreadsheet

    I'm using Netbeans to create db application. I need to export the results of a query (recordset) into an excel file.
    How can I do that?
    Here is how I create the recordset:


    String host...
  7. Replies
    2
    Views
    2,569

    From query to JTable

    In Netbeans I'm using a JTable to display data from a db table. How can I bind the JTable to the results of a query (resultset)?

    Here is how I create the recordset:



    String host =...
Results 1 to 7 of 7