Hi all,
I have gone through some tutorial available in the net on automatically updating a schema.(
web page)
I tried to implement whatever is given in that tutorial. Here goes the description.
I have a class Schema1 which is a representation for the table schema1 in MYSQL.
Table schema1 has columns id(int type),description(varchar type) and country_code(int type).
Table schema1:
Column Data-type
------ ---------
id int
description varchar
country_code int
Class Scema1.java looks like the following:
Now, i have another class UpdateSchema.java. It looks like the following:
I have exactly followed the code given in the tutorial.
What I am unable to understand is where from does the "execute" method arise?(In "new UpdateSchema(myConfiguration).execute(true,true);")
Could anybody give me some idea about this code?
Thanks,
Subhash
[ September 24, 2008: Message edited by: subhashchandra medhiassam ]