My application requires that I take a backup of a table onto a file on the hard disk programmatically before I actually delete all the rows in the table. Currently we take the backup manually using Toad for Oracle before running the application, but I was wondering if there is any standard API that does it for me in JDBC? :roll: I know I can write code to open a JDBC Connection, run an SQL stmt, "select * from mytable", iterate thru the ResultSet and write to a file. But is there a better or a simpler approach?..... Can I serialize a ResultSet?
Post by:Jeanne Boyarsky
,
author & internet detective
staff
Vish, You could run TOAD at the command line. A script could kick off TOAD and then your java program. Or your java program could call TOAD before deleting.
Post by:Vishwa Kumba
,
Ranch Hand
Thanks Jeane, But the idea is, not to use any tools like Toad or SQL export utility. It would be easy for us, if we can call directly from our java aplication. The production env support machine is likely to have only JDK and JDBC driver installed on it.
Post by:Jeanne Boyarsky
,
author & internet detective
staff
In that case, you are going to have to write the code. You can use metadata to write in once for any table though.
Post by:autobot
a fool thinks himself to be wise, but a wise man knows himself to be a fool - shakespeare. foolish tiny ad:
Programmatically Create PDF Using Free Spire.PDF with Java