Re: upload file into database in asp
From: John (jz~~remove~~mcfireAThotmailDOTcom)
Date: 09/08/04
- Next message: joker: "Re: upload file into database in asp"
- Previous message: Nithi Gurusamy: "Encryption not supported on SQL Server"
- In reply to: Roland Hall: "Re: upload file into database in asp"
- Next in thread: Roland Hall: "Re: upload file into database in asp"
- Reply: Roland Hall: "Re: upload file into database in asp"
- Messages sorted by: [ date ] [ thread ]
Date: Tue, 7 Sep 2004 19:42:17 -0700
Roland,
Do you have a code sample of how you run the doc file download/edit/upload?
Or is there a link to sample code at MS or elsewhere that you can pass on?
Or even a general description of the process -- e.g. ... use
Response.BinaryWrite for ...
I'm obviously a bit of a beginner at this. I've been looking about the net
for awhile, likely in the wrong places, and haven't been able to find a good
model.
Appreciatively,
John
"Roland Hall" <nobody@nowhere> wrote in message
news:%23742QaTlEHA.3016@tk2msftngp13.phx.gbl...
> "weiwei" wrote in message
> news:d32b0478.0409071339.32df9b4b@posting.google.com...
> : Hi All
> : I want to upload either image or word document into either access or
> : SQL server database
> : so far I am doing some small testings and what I can do is upload the
> : file from first page and display at the next
> : page with (both image or word are working fine).
> : however, I cann't insert them into the database, Plus, what type
> : should I use in access database?
> : anyone who has this type of project, please help me out
> : below is my current test code
> : <%
> : FormSize = Request.TotalBytes
> : FormData = Request.BinaryRead( FormSize )
> : 'bnCRLF = chrB( 13 ) & chrB( 10 )
> : 'Divider = LEFTB( FormData, INSTRB( FormData, bnCRLF ) - 1 )
> : 'DataStart = INSTRB( FormData, bnCRLF & bnCRLF ) + 4
> : 'DataEnd = INSTRB( DataStart + 1, FormData, divider ) - DataStart
> : 'Response.ContentType = "image/gif"
> : 'Response.ContentType = "application/msword"
> : 'Response.BinaryWrite MIDB( FormData, DataStart, DataEnd )
> : 'Response.BinaryWrite FormData
> : %>
> : <!--Create and Open the Databse Connection-->
> : <% Set connCW = Server.CreateObject("ADODB.Connection") %>
> : <% connCW.Open ="Driver={Microsoft Access Driver (*.mdb)}; " &_
> : "DBQ=" & Server.Mappath("track.mdb") %>
> : <%
> : sql = "INSERT INTO upload (FileName) VALUES('" & FormData & "')"
> : Set rs = connCW.Execute(sql)
> : %>
> :
> : I got error saying type mismatch
>
> My upload routines upload the file to the server, I move it to a specific
> location and I store the path and filename in the database. I don't see a
> need to store files in databases.
>
> --
> Roland Hall
> /* This information is distributed in the hope that it will be useful, but
> without any warranty; without even the implied warranty of merchantability
> or fitness for a particular purpose. */
> Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
> WSH 5.6 Documentation -
http://msdn.microsoft.com/downloads/list/webdev.asp
> MSDN Library - http://msdn.microsoft.com/library/default.asp
>
>
- Next message: joker: "Re: upload file into database in asp"
- Previous message: Nithi Gurusamy: "Encryption not supported on SQL Server"
- In reply to: Roland Hall: "Re: upload file into database in asp"
- Next in thread: Roland Hall: "Re: upload file into database in asp"
- Reply: Roland Hall: "Re: upload file into database in asp"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|