1. 程式人生 > >如何顯示sqlserver中image欄位型別的圖片

如何顯示sqlserver中image欄位型別的圖片

我現在在ruby中已經把圖片儲存到資料庫中,但是讀不出來,
我是這樣寫的
def picture
@rypicture = RyPicture.find(params[:id])
send_data(@rypicture.data,
:filename => @rypicture.name,
:type => @rypicture.content_type,
:disposition => 'inline')
end

在show介面上該如何寫呢?