Forums Register Login

Creating a database

+Pie Number of slices to send: Send
I am new to Java.My Question is I want to create a database instead of querrying a database. What I want to do is I have a list of create statements in a text file Is there anyway by which I can connect to database server and execute these create table statements in my text file.
Example
Database.txt is my file and I have
create table entity {
char Name[3];
int SSN[10];
}
create table ChildEntity {
char childname[4];
}
as the content of txt file
+Pie Number of slices to send: Send
I am still waiting for Java Database Guru's to help me.Thanks in advance any suggestion is wellcome including books or sites to refer.I need a start.
[This message has been edited by chandana kotamraju (edited July 15, 2001).]
+Pie Number of slices to send: Send
Assuming that your DDL statements are in correct syntax.
You will have to read the database text file and parse it into strings which represent indivual SQL statements.
Store them into an array of Strings.

Now establish a database connection in your program.
[CODE]
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection con = DriverManager.getConnection("jdbc dbc armeet", "sa", "");
Statement stmt = con.createStatement();
for(int i =0; i<=tableStatements.length; i++)
{
stmt.executeUpdate(s[i]);
}
[CODE]
+Pie Number of slices to send: Send
The easiest thing to do is if your database support batch mode operations.
With MySQL, for example (which is free for download) u can simple write this at the prompt:
mysql -h yourhost -u userid -p < your.txt.file
Enter password; ****
If you need to do this directly from ur java app, the easiest you solution is to spawn a new shell with the this argument:
mysql -h yourhost -u userid -pYoUrPaSsWoRd < your.txt.file
Salam
+Pie Number of slices to send: Send
I appreciate for trying to help me.I will work on this and inform new developments or any interesting problems.Thank you once again.
Chandanakrishna
Please enjoy this holographic presentation of our apocalyptic dilemma right after this tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com


reply
reply
This thread has been viewed 948 times.
Similar Threads
Migration data to Oracle (Urgent
connectivity with my sql without connecting to existing database
How to read the DESede encrypted value using a Java Program
Dynamic table using struts
Reading text in a table from word document
More...

All times above are in ranch (not your local) time.
The current ranch time is
Apr 16, 2024 00:21:35.