tags:

views:

160

answers:

2

I have already added the table, I want some particular row to delete, anyone can help me

+2  A: 

TDataSet.Delete is the obvious answer...

Alan Clark
A: 

If you are using a TTable, you can use the FindKey method to position the cursor on the correct row and then just call the Delete method of TTable.

Jim Fritchman