My requirement is to select a record first (the record may not have a primary key) and the delete the same record.
Below is the flow :
- Select all records from table.
- while (resultset.next()), get the single record.
- delete the record.
The code has to work with all databases.As this is going to be genric service.
This is a java database service.Currently it is implemented for Oracle.We are using ROWID to identify each record.But it fails for other databases as some databases don't have ROWID and similar concept.I want to make this service generic.I want to apply some logic other than ROWID
Any ideas ?
Many Thanks.