File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes JDBC and the fly likes Creating Database Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Databases » JDBC
Reply Bookmark "Creating Database" Watch "Creating Database" New topic
Author

Creating Database

Chiranjeevi Kanthraj
Ranch Hand

Joined: Feb 18, 2008
Posts: 283

Hi i am using Mysql database.

I need to create the database from my java application.

is their any way?

Please give some inputs how i can do that?


-Chiru
Campbell Ritchie
Sheriff

Joined: Oct 13, 2005
Posts: 32833
    
    4
A trip to the Java Tutorials is called for
Chiranjeevi Kanthraj
Ranch Hand

Joined: Feb 18, 2008
Posts: 283

Sorry if i am not asking question properly.

i want to create the database, like what we use the query in Mysql as "Create data base XXXXX" like that is their any way to run this query with out having any database in Mysql.
Campbell Ritchie
Sheriff

Joined: Oct 13, 2005
Posts: 32833
    
    4
As far as I know you can pass "create database if not exists chirus_database" as a statement with the java.sql.Statement#execute or java.sql.Statement#executeUpdate methods.
Campbell Ritchie
Sheriff

Joined: Oct 13, 2005
Posts: 32833
    
    4
You might need to specify your Statement as updatable type when you create it from the Connection.
Chiranjeevi Kanthraj
Ranch Hand

Joined: Feb 18, 2008
Posts: 283

Thank you this is what i am expecting..
Campbell Ritchie
Sheriff

Joined: Oct 13, 2005
Posts: 32833
    
    4
Originally posted by Chiru Raj:
Thank you this is what i am expecting..
You're welcome
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Creating Database
 
Similar Threads
Sharing data between web app's
menu creation
share data
designing login page
No proxy with session.load() instead it does a database hit - Why?