Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Delete record in DBase table
Message
De
09/07/2003 04:10:01
 
 
À
07/07/2003 02:49:53
Teddy Win
Bytel Information Technology
Jakarta, Indonésie
Information générale
Forum:
Visual Basic
Catégorie:
Autre
Divers
Thread ID:
00807351
Message ID:
00808360
Vues:
17
Hi Teddy,

Try to see the file attribute of the .DBF Table if it mark as Read Only.
Or Do you have full rights on the .DBF file?

or you can try these one...
   Dim objCon As ADODC.Connection
   Dim ConStr As String
   Dim SQL as String

   ConStr = <Place your connection string here>
   objCon.Open ConStr
   SQL = "DELETE FROM <tablename> WHERE <condition>"
   objCon.Execute(SQL)
   objCon.Close
   Set objCon = Nothing
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform