Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 4 of 4

Thread: Problem in developing my first java database applicaiton

  1. #1
    Junior Member
    Join Date
    Aug 2013
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Problem in developing my first java database applicaiton

    hi, this is my first time to make java desktop application with postgresql as my database server, question is how can i deploy my application? i mean that if postgresql and netbeans are not installed it can run the application with the database, where you can insert, delete, or update the data...... tnx in advance and sorry for my grammar...


  2. #2
    Administrator copeg's Avatar
    Join Date
    Oct 2009
    Location
    US
    Posts
    5,320
    Thanks
    181
    Thanked 833 Times in 772 Posts
    Blog Entries
    5

    Default Re: Problem in developing my first java database applicaiton

    PostgreSQL is built like a database server, in that there should be a central server such that each instance communicates with this instance (and as a result data is shared). You package your application as a runnable jar and distribute it that way. If you are looking for an embedded database, you might wish to look into something like Derby.

  3. #3
    Junior Member
    Join Date
    Aug 2013
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: Problem in developing my first java database applicaiton

    Quote Originally Posted by copeg View Post
    PostgreSQL is built like a database server, in that there should be a central server such that each instance communicates with this instance (and as a result data is shared). You package your application as a runnable jar and distribute it that way. If you are looking for an embedded database, you might wish to look into something like Derby.
    Is there a way to embed postgresql?

  4. #4
    Administrator copeg's Avatar
    Join Date
    Oct 2009
    Location
    US
    Posts
    5,320
    Thanks
    181
    Thanked 833 Times in 772 Posts
    Blog Entries
    5

    Default Re: Problem in developing my first java database applicaiton

    Not that I know of. What did google tell you?

Similar Threads

  1. Best Tools for developing in Java/Android
    By Nesh108 in forum Android Development
    Replies: 11
    Last Post: October 24th, 2012, 07:34 AM
  2. Problem developing app for Android
    By jume28 in forum JDBC & Databases
    Replies: 1
    Last Post: June 4th, 2012, 05:26 PM
  3. Java DataBase Connectivity Problem
    By sahilradotra in forum JDBC & Databases
    Replies: 1
    Last Post: May 8th, 2012, 07:46 AM
  4. problem developing a frame help me...
    By bluestar_me in forum AWT / Java Swing
    Replies: 3
    Last Post: February 18th, 2012, 05:18 AM
  5. [SOLVED] I have a problem with this java code for database access
    By abhiM in forum What's Wrong With My Code?
    Replies: 3
    Last Post: August 19th, 2011, 03:52 AM