Search:

Type: Posts; User: innocenceesstt

Search: Search took 0.10 seconds.

  1. Re: a tool to distribute netbeans java application with java database

    I uesed this code in order to start the server

    NetworkServerControl server = new NetworkServerControl();
    server.start (null);
    And this code in order to connect the database

    String url =...
  2. Re: a tool to distribute netbeans java application with java database

    In deed It is the only way that I found is to start manually the database server!
    even in netbeans tutorial it is the only described way
    https://netbeans.org/kb/docs/ide/java-db.html#starting...
  3. Re: a tool to distribute netbeans java application with java database

    Thank you very much for your answer
    this is the code of the connection try {
    String url = "jdbc:derby://localhost:1527/";
    String dbName = "Data_base";
    String...
  4. Re: a tool to distribute netbeans java application with java database

    I tried to follow this tutorial many times but my problem is that the database connection is not established when te IDE is closed! I have to do it manually from netbeans. but the jar file is created...
  5. a tool to distribute netbeans java application with java database

    I developped a java application using netbeans but I have a problem with the distribution of my application after building I find a jar file but when I execute it with the netbeans IDE cloesed the...
Results 1 to 5 of 5