Hi,
I'm trying to delete all the records in a VFP free table. Doing the deleting is no problem, but I want them permanently deleted, like ZAP or PACK.
Can you do something like below but with the PACK or ZAP command? I know it's a stupid question but I'm stuck.
thanks,
Marcel
Dim LoConn As New OleDb.OleDbConnection
LoConn.ConnectionString = MicroFour.StrataFrame.Data.DataLayer.DataSources("myKey").ConnectionString
LoConn.Open()
Dim loCommand As New OleDb.OleDbCommand("SET DELETED OFF", loConn)
loCommand.ExecuteNonQuery()