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%"> </th>
<th width="17%"> </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>
확인이 링크 - 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이 도움이 되길 바랍니다! –