after cn.Open
all you need is to set up your sql string and then execute it
sql = "DELETE Position.* FROM Position"
cn.execute sql
Main Topics
Browse All TopicsHi,
My excel VBa is connecting to a local Ms Access DB. I want to run a command to clear all rows in my Position table. My code looks like
Set cn = New ADODB.Connection
Set cmd = New ADODB.Command
Set rst = New ADODB.Recordset
cs = GetDbConnectionStringAcces
cn.ConnectionString = cs
cn.Open
With cmd
.CommandType = adCmdText
.ActiveConnection = cn
End With
sql = "DELETE Position.* FROM Position"
cmd.CommandText = sql
Set rst = cmd.Execute
However I keep getting 'Syntax error in From clause error'. I don't know why...I've also tried sql = "DELETE FROM Position" and get the same error
I've changed sql = "DELETE FROM Pston" and the DB correctly throws an error saying no such table exists - so it's clearly connecting properly.
Any ideas?
Thanks
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: tbsgadiPosted on 2008-12-10 at 01:26:01ID: 23137387
Hi bowemc,
Have you tried deleting rows manually?
Gary