|
-
Oct 5th, 2000, 07:36 AM
#4
Hyperactive Member
If it is ADO you are using you will need a command object and a connection
Dim cmd As ADODB.Command
Set cmd = New ADODB.Command
cmd.ActiveConnection = 'Your connection object here
cmd.CommandTimeout = 0
cmd.CommandText = 'your sql string here
cmd.Execute
Set cmd = Nothing
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
|