-
Optional feature not implemented error.
When I'm calling my INSERT sp, I get the following error from VB6 sp4 program:
Run-time error '-214717867'
[Microsoft][ODBC Sql Server Driver]Optional Feature not implemented.
Here's my code:
Dim lngRecordsAffected
Dim objCommand As New Command
objCommand.ActiveConnection = gstrConnectString
objCommand.CommandText = "sp_insert_ListOrder"
objCommand.CommandType = adCmdStoredProc
objCommand.Parameters.Append _
objCommand.CreateParameter("MailingOrderID", adInteger, _
adParamInput, , lngMailingOrderID)
objCommand.Parameters.Append _
objCommand.CreateParameter("ListID", adInteger, _
adParamInput, , lngListID)
etc...
objCommand.Execute lngRecordsAffected
The error is called on the last line. TIA.
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
|
Top DevX Stories
Easy Web Services with SQL Server 2005 HTTP Endpoints
JavaOne 2005: Java Platform Roadmap Focuses on Ease of Development, Sun Focuses on the "Free" in F.O.S.S.
Wed Yourself to UML with the Power of Associations
Microsoft to Add AJAX Capabilities to ASP.NET
IBM's Cloudscape Versus MySQL
|
Bookmarks