I have two tables, tblScannerTransactions and tbl ScanTranSummary. Table tblScannerTransactions stores all transactions as far as insert, delete and updates. When a record is written to tblScannerTransactions it updates table tblScanTranSummary. So basicly table tblScanTranSummary is the running sum of all my transactions. All this is great!
My problem: Say I delete a record by selecting the row by ID (auto int) field in the tblScanTranSummary table. When the row is deleted, there is no trace of where that record went. I want to have any record that is deleted from this table to be recorded in the tblScannerTransactions table. How would I go about doing this?
If this question is not clear, tell me what's not clear.
Thanks All
My problem: Say I delete a record by selecting the row by ID (auto int) field in the tblScanTranSummary table. When the row is deleted, there is no trace of where that record went. I want to have any record that is deleted from this table to be recorded in the tblScannerTransactions table. How would I go about doing this?
If this question is not clear, tell me what's not clear.
Thanks All