|
-
Jun 26th, 2000, 12:03 PM
#1
Thread Starter
New Member
Hello,
I am using an Access 2000 database with an ADO connection. The code I use to connect is:
Option Explicit
Private WithEvents connSettings As ADODB.Connection
Private WithEvents rsFileList As ADODB.Recordset
Set connSettings = New ADODB.Connection
connSettings.CursorLocation = adUseClient
connSettings.Open strConnect
Set rsFileList = New ADODB.Recordset
rsFileList.CursorType = adOpenStatic
rsFileList.CursorLocation = adUseClient
rsFileList.LockType = adLockPessimistic
rsFileList.Source = "Select * From FileList"
rsFileList.ActiveConnection = connSettings
rsFileList.Open
What I want to do is clean up the table of all duplicate entries. I tried looping through them but it really didn't work. If anyone could help that would be great!
Thanks a lot!
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
|