Re: ASP Problem on uploading file into SQL 2005 DB
- From: "news.microsoft.com" <sdfadsf@dsfgdsf>
- Date: Sun, 16 Apr 2006 02:17:28 +0800
Hi Cinzia
How do you do that? How can I uninstall lower version of MDAC?
Monica
"Cinzia" <cinziapagani-no-spam_please@xxxxxxxxxx> wrote in message
news:OCouHh6XGHA.3444@xxxxxxxxxxxxxxxxxxxxxxx
"Monica" <dfzsdf@xxxxxxxxxx> ha scritto nel messaggio
news:uUYRJagXGHA.752@xxxxxxxxxxxxxxxxxxxxxxx
I have a problem with uploading file into SQL 2005 DB using IIS 6.0please
webserver, this code was working in SQL 2000 Db and IIS 5.0. Can you
help me to see what the problem is.
Error msg :
Microsoft OLE DB Provider for ODBC Drivers error '80040e23'
[Microsoft][ODBC SQL Server Driver][SQL Server]The cursor does not
include
the table being modified or the table is not updatable through the
cursor.
/uploadnewrequest.asp, line 158
Code:
rstrNewFiles = ""
Set rstrNewFiles = Server.CreateObject("ADODB.Recordset")
rstrNewFiles.Open "tblrFiles", Conn, 3, 3
Set cmd = Server.CreateObject("ADODB.Command")
with cmd
.ActiveConnection = conn
.Parameters.Refresh
.CommandTimeout = 3600
End With
rstrNewFiles.AddNew
rstrNewFiles("ProjectNo") = strprojNumber
rstrNewFiles("projectID") = Uploader.Form("ProjNo")
rstrNewFiles("FileName") = File.FileName
rstrNewFiles("FileSize") = File.FileSize
rstrNewFiles("CreatedBy") = strUSer
rstrNewFiles("IPAddress") = varIPAddress
rstrNewFiles("DateCreated") = strDateCreated
If varFileExtension = "doc" then
rstrNewFiles("ContentType") = "application/msword"
Else
rstrNewFiles("ContentType") = File.ContentType
End if
rstrNewFiles("FileData").AppendChunk File.FileData
Line 158 - rstrNewFiles.Update
rstrNewFiles.Close
Hi Monica,
I had a similar problem.
The problem in my case, was generated by different release od ADO
installed
on the server running the application.
To work fine with SQL Server 2005 you need MDAC 2.8, but if in your
system
you have also MDAC 2.6, 2.1 ecc...
could be IIS don't use the last version ... so if you can, try to
remove
the old version of mdac.
--
Cinzia
---------------------------------------
| http://www.riolab.org |
--------------------------------------->
.
- Follow-Ups:
- Re: ASP Problem on uploading file into SQL 2005 DB
- From: Cinzia
- Re: ASP Problem on uploading file into SQL 2005 DB
- References:
- Re: ASP Problem on uploading file into SQL 2005 DB
- From: Cinzia
- Re: ASP Problem on uploading file into SQL 2005 DB
- Prev by Date: Re: Validate logins with ASP, MS Access and Cookies error
- Next by Date: Re: Validate logins with ASP, MS Access and Cookies error
- Previous by thread: Re: ASP Problem on uploading file into SQL 2005 DB
- Next by thread: Re: ASP Problem on uploading file into SQL 2005 DB
- Index(es):
Relevant Pages
|