2012-09-12 2 views
0

방금 ​​전이 프로젝트를 통해, Classic Asp 및 SQL Server 2000을 사용한 웹 사이트의 백엔드에 일부 이미지를 표시해야했지만 지금까지는 데이터베이스의 대부분을 표시 할 수있었습니다. 이 이미지에 대해 알 수 없습니다. 나는 지금까지 내가 이해할 수있는 것을 시도했다. 거기에있는 테이블을 만들었는데 img 열이 이미지 데이터 타입으로되어 있는지 나는 알지 못한다. 이미지를 가져 오기 위해 스크립팅을 어떻게해야합니까? (아마도 웹 서버에) 디스크에 이미지 파일을 저장하고 데이터베이스 만의 '커버'테이블에 자신의 파일 이름을 저장하기 위해고전 ASP를 사용하여 SQL Server 2000에서 이미지를 삽입하는 방법

<table border="1" cellpadding="0" cellspacing="0" width="100%"> 
       <tr height="25px"> 
        <th width="25%">Cover Name</th> 
        <th width="25%">Category Name</th> 
        <th width="17%">Thumbs</th> 
        <th width="17%">&nbsp;</th> 
        <th width="17%">&nbsp;</th> 
       </tr> 
       <% 
        sql = "SELECT * from covers" 
        rs.open sql, con, 1, 2 
        do while not rs.eof 
       %> 
       <tr> 
        <td align="center"><%=rs("c_name")%></td> 
        <td align="center"><%=rs("category")%></td> 
        <td align="center"><%=rs("img")%></td> 
        <td align="center"><a href="edit.asp?cover=<%=rs("c_name")%>">Edit</a></td> 
        <td align="center"><a href="delete.asp?cover=<%=rs("c_name")%>" onclick="var r =confirm('This Cover details will be deleted permenantly . Are you sure you want to DELETE'); 
       { 
        if (r==true) 
        alert('record will be deleted'); 
        if (r==false) 
        return false; 
       }">Delete Info</a></td> 
       </tr> 
       <% 
        rs.movenext 
        loop 
        rs.close 
       %> 
       </table> 
+0

확인이 링크 - http://www.codeproject.com/Articles/21208/Store-or-Save-images-in-SQL-Server http://stackoverflow.com/questions/1328914/save-image- column-to-file-in-sql-server-2000 http://social.msdn.microsoft.com/Forums/en/transactsql/thread/a375ac9b-6cd1-424c-a337-94482c6977f8이 도움이 되길 바랍니다! –

답변

0

더 나은 것입니까?

직접 질문에 대답하지 않는 사과,하지만 데이터베이스에 바이너리 파일을 저장하는 여분의 합병증은 정말 대가로 어떤 큰 이점을 제공하지 않는 것 같습니다.

자세한 내용은에 대한 자세한 내용은 SO Post을 참조하십시오.