This week's book giveaway is in the General Computing forum. We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line! See this thread for details.
// Deletes a record, making the record number and associated disk // storage available for reuse. // Throws SecurityException if the record is locked with a cookie // other than lockCookie.
I thought that if I was to delete a record I would just mark it as deleted and let it be reused but from my instruction am I to construe I get rid of the row totally ??Any ideas what is everyone doing Regards Subu
Originally posted by subu ananthram: // Deletes a record, making the record number and associated disk // storage available for reuse.
Not to worry you are on the right track. Marking a record as deleted does make the record number and disk storage available for reuse. This is because the create method can use any record slot marked as deleted and can overwrite it with the new record data.