Hi to all
I need some help to write a java program to parse 2 text file one containing the details of the database and the other the data that will be used to insert in the tables of the database
A sample for the first file :
schema : Test
Table : user(id#int;name#string;mail#string)
Table : students(id#int;name#string;class#string)
second file :
user
1;peter;peter@mail.com
2;micheal;micheal@email.com
3;george;george@yahoo.fr
students
1;jhon;CMP1
2;piere;CMP3
3;sabrina;CM4
thanks