TMSTable->Delete() is very slow
Posted: Tue 23 Jun 2009 18:28
TMSTable->Delete() is very slow.
Is there a faster way to delete rows?
This is what I’m currently doing (All rows in table are deleted) in C++.
if(!dmSCT->MSTable_Delete->Eof)
{
do
{
dmSCT->MSTable_Delete->Delete() ;
}while(!dmSCT->MSTable_Delete->Eof) ;
}
Alan
Is there a faster way to delete rows?
This is what I’m currently doing (All rows in table are deleted) in C++.
if(!dmSCT->MSTable_Delete->Eof)
{
do
{
dmSCT->MSTable_Delete->Delete() ;
}while(!dmSCT->MSTable_Delete->Eof) ;
}
Alan