|
-
Oct 16th, 2000, 07:42 AM
#1
Thread Starter
Hyperactive Member
Anyone tell me why i get this error
ADODB.Recordset error '800a0cb3'
Object or provider is not capable of performing requested operation.
with this
strProvider = "DSN=MLAdmin;"
'create connection
Set cn = CreateObject("ADODB.Connection")
cn.Open strProvider
strQuery = "SELECT * FROM CONTACT"
Set rst = CreateObject("ADODB.Recordset")
rst.Open strQuery, cn
rst.AddNew
FOR i = 1 to rst.Fields.Count -1
rst.Fields(i).Value = Request.Form(rst(i).Name)
NEXT
rst.update
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
|