desktop « mysql « Java Database Q&A





1. Opensource packaging software for Mysql Server with Java Desktop Application    stackoverflow.com

I have a Java desktop application which uses mysql database . Is there any Open source software for packaging or executable wrapper of Mysql server and Java desktop application ...

2. a desktop application storing data?    stackoverflow.com

Say I have created a desktop application in Java to keep notes. I used MySQL for storage. On my computer it connects to database I have created(using my root username and ...

3. How to create installer once finished with Java Desktop Application with MySQL DB?    stackoverflow.com

I have finished writing a Java Desktop application with a mySQL database. I want to make the application run outside netbeans and let it be installed on other computers. I know ...

4. How should I Install a Java desktop application into a Desktop without Netbeans/IDE and MySQL?    stackoverflow.com

Hi I am planning to install a Java Desktop Application to a PC that doesn't have a Netbeans IDE and MySQL installed. Can you teach me what to do? I really don't ...

5. MySQL Java desktop app tru Netbeans wizard?    forums.netbeans.org

Hi im using the wizard in netbeans 6.5 to do this. Netbeans>New project>Desktop Application Done! It generates a prog that allows me to view edit delete to a MySQL table. Problem ...

6. MySQL Database Desktop Application Project    forums.netbeans.org

Hi Ishwar, I face the same problem with sergio and found this thread. I have check that my table are already in InnoDB engine. What more cause the problem? Thanks. ISHWAR ...

7. What and How to use BLOB in java desktop through mysql...?    forums.netbeans.org

Hi to all netbeans developers, I am quite a newbie in BLOB uploading, I tried it once in php but I failed; however, I have a thought of trying to java ...

8. store/retrive word doc to Mysql, with desktop application    forums.netbeans.org

Hi everybody, I am using NetBeans 6.7.1, excellent !! I need your help with the following problems: first: 1. open a word doc on a button click (jButton) 2. let the user scan in some doc, pictures, what ever) 3. close the doc and insert it to mysql table (blob column) the second thing to do: 1. print the word doc ...

9. several desktop apps connected to one MySql db    coderanch.com

i'm not sure if this is the right place, so here i go i'm very new to java (just finished understanding interfaces), but i like to dream. Actually i'm developing a web application ( with php+MySql+Apache) where users fill lots and lots of forms. Those values are stored in Mysql. Other users will work on that data, editing, updating or deleting ...





11. Well is better use Access or MySQL with WIN (JAVA) APPS (desktop), cons and pros ?    dbforums.com

each has their benefits and each has their drawbacks Access/JET is a file server type DB, its fine for small applications, its fairly transportable and has modest server needs. MySQL is a servewr DB that can support significantly bigger volume of data and users. MySQL will ruin on many different platforms whereas JET is usually Microsoft only. if you want the ...

12. deploying Java Desktop application with MySql database    java-forums.org

I have develped a java application that uses a mysql database which works in Local Area Network environment. I want to make a distributable installation program for this application so that a user who does not know anything about java or data bases should be able to install this application in his system (Windows OS) with just a click. He should ...

13. Well is better use Access or MySQL with WIN (JAVA) APPS (desktop),cons and pros ?    java-forums.org

Access is for desktop or web Apps BUT MySQL is ONLY for web Apps ? May Java desktop Apps use MySQL...If yes, how much space take the database structure in the App, if for example data in database reach 1MB exactly...? I am beginner in binding DATABASES TO WIN (JAVA) APPS but I have practiced in web apps binding JSP/MYSQL.... Well ...

14. MYSQL Database to Java Desktop Application using a static IP Address    forums.oracle.com

Objective: 1.To be able to connect the MYSQL Database to Java Desktop Application using a static IP Address. 2. To be able to Deploy the application into 20 users with different Units. Working Method: Variables Used: public String url = "jdbc:mysql://localhost:3306/"; public String db = "tis"; public String driver = "com.mysql.jdbc.Driver"; public String userName = "root"; public String userPassword = "123"; ...