Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Delete record in DBase table
Message
From
09/07/2003 04:10:01
 
 
To
07/07/2003 02:49:53
Teddy Win
Bytel Information Technology
Jakarta, Indonesia
General information
Forum:
Visual Basic
Category:
Other
Miscellaneous
Thread ID:
00807351
Message ID:
00808360
Views:
16
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
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform