Advertisement

05.13.2008 at 01:23AM PDT, ID: 23396992
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

Display BLOB by ASP

We want to run ASP page to display some records w/ picture (BLOB) from Oracle 10g database. And just found some sample coding, that is worked for picuter display. But when I change it something like that..

Sample table
A      Varchar(10)
B      Varchar(20)
IMG   BLOB

...
      sSQL = "Select A, B, IMG from IMAGE where A = "testing"
...
   oRS.Open

      strtemp = oRS("IMG")
      Response.BinaryWrite(strTemp)

      strtemp2 = oRS("A")                             <---- new add
      Response.Write(strTemp2)                  <---- new add

      Response.End
....

It has an error, any wrong ? Those code is good for BLOB only ? I MUST display all (include text and picture together) from database.

Can help please ?


Thanks !
      
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
<%@ LANGUAGE="VBSCRIPT" %>
 
      <%
      'Clear existing HTTP header information.
      Response.Expires = 0
      Response.Buffer = TRUE
      Response.Clear
 
      'Set the HTTP header to an image type, if you want to display
      'a jpg you need to use the "image/jpeg" content type.
      Response.ContentType = "image/gif"
 
      Dim strTemp
 
      Set oConn = Server.CreateObject("ADODB.Connection")
 
     'You need to change this line to reflect your DSN, UID
     'and PWD.
      oConn.Open "DSN=Ovteam;UID=userid;PWD=password;"
 
     'Change this line to use your table that contains a raw or
     'long raw field.  In this case, ID is the primary key of the
     'IMAGE table and IMG is the RAW or LONG RAW data column.
      sSQL = "Select ID, IMG from IMAGE where ID = 1"
 
      Set oRS = Server.CreateObject("ADODB.Recordset")
      oRS.Source = sSQL
      oRS.ActiveConnection = oConn
 
     'The cursor type does not seem to matter.  A keyset cursor was used
     'with success for this article; however, you will not be able to
     'scroll with it because the content type of this page is set for
     '"image/gif".
 
      oRS.Open
 
      strtemp = oRS("IMG")
      Response.BinaryWrite(strTemp)
      Response.End
 
      oRS.Close
      Set oRS = nothing
      oConn.Close
      Set oConn = nothing
   %>
Start your free trial to view this solution
Question Stats
Zone: Database
Question Asked By: rhinoceros
Solution Provided By: orcic
Participating Experts: 1
Solution Grade: A
Views: 13
Translate:
Loading Advertisement...
05.13.2008 at 01:41AM PDT, ID: 21553170

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
05.20.2008 at 01:28AM PDT, ID: 21604315

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
Loading Advertisement...
20080236-EE-VQP-29 / EE_QW_2_20070628