|
-
Jul 28th, 1999, 06:43 PM
#1
Thread Starter
New Member
Hi,
I'm writing data from a flexgrid to a table in Access 97. There may already be data in the table. How can I clear all the data in the table every time I write to it?
Thanks,
Jason
-
Jul 28th, 1999, 07:51 PM
#2
Member
You can delete all the data from table
Dim Db as database
Dim SQLs as string
Set db = opendatabase("C:\Bibilio.mdb")
SQLs= "Delete from Address"
Db.execute SQLS
The above SQL command will delete all the contents from the table Address
I hope this is what you want
-
Jul 28th, 1999, 09:11 PM
#3
Thread Starter
New Member
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|