我有一個包含圖像URL的數據庫。我有一個存儲過程的帽子GET的url的(SP_GET_Image)
我想執行存儲過程,然後爲每個URL的圖像。從數據庫中的url中獲取圖像
我想在本地的實際圖像不是網址。
然後對於每個圖像我想在本地保存它們。我有這個代碼,但想知道如何將每個圖像保存在數據行中。
我已經開始使用代碼。
Dim CMD as new sqlCommand("StoredProcedureName")
CMD.parameters("@Parameter1", sqlDBType.Int).value = Param_1_value
Dim connection As New SqlConnection(connectionString)
CMD.Connection = connection
CMD.CommandType = CommandType.StoredProcedure
Dim adapter As New SqlDataAdapter(CMD)
adapter.SelectCommand.CommandTimeout = 300
'Fill the dataset'
Dim DS as DataSet
adapter.Fill(ds)
connection.Close()
'Now, read through your data:'
For Each DR as DataRow in DS.Tables(0).rows
'<-- Im not sure here how to GET EACH images locally saved.
Next
c#或vb幫助很好。
的URL看起來是這樣的:
http://img.myCompany.net/p/1483/278227_20094171232290.jpg
你能提供由SP返回的那些'DataRow'中的結構和樣本值嗎?這將是一個完整的網址,如「http:// ww.google.com/logo.png」? –
@Mathew編輯原始文章 – user3458266
這是你的需求? 「你的數據庫中有一些URL,你必須將它們保存到你的項目文件夾中,是嗎?」 – naveen