my queation is:In my database i have many tables. i need to create those tables in runtime. while doing so how do i check for already existing table? it should not be overwritten . if there is a table already the data what i insert should be updated to that respective table. plz help me soon.its high i should have completed my project. but have not.with regards vidhya
First of all pass a database command " desc <table name> "using executeQuery() function. Depending on the value returned you can determine whether the table exists if it does not then proceed your way .....Hope it works and your problem gets solved.