Code:
GAFSTRING = "C:\GAF_TENDER\VIAGGIANTI_TABELLE.MDB"
Set DATA_MART_CONN = New ADODB.Connection
With DATA_MART_CONN
.Provider = "Microsoft.JET.OLEDB.4.0"
.Open GAFSTRING, "Admin", ""
End With
.....
With DATA_MART_CONN
SQL = "DELETE * FROM VIAGGIANTI_TAB WHERE INDICE1='" & DATA_CREA & "'"
.Execute (SQL), CONTA, adCmdText Or adExecuteNoRecords
End With
tks.
note:
- the field INDICE1 is indexed
- i use vba for excel
