把影像檔案上傳到資料庫,並從資料庫讀出 (轉)
圖片到:
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Data.Client;
using System.Drawing;
using System.;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.IO;
namespace my
{
///
/// img2sql 的摘要說明。
///
public class img2sql : System.Web.UI.Page
{
protected System.Web.UI.WebControls.TextBox imgTitleTextBox;
protected System.Web.UI.HtmlControls.HtmlInputFile upLoadImg;
protected System.Web.UI.WebControls.RequiredFieldValidator RequiredFieldValidator1;
protected System.Web.UI.WebControls.Button Button1;
protected SqlConnection myConnection;
private void Page_Load( sender, System.EventArgs e)
{
// 在此處放置程式碼以初始化頁面
string conn="server=(local);database=test;uid=sa;pwd=ilovenm";
myConnection=new SqlConnection(conn);
}
#region Web FoDesigner generated code
overr protected void OnInit(EventArgs e)
{
//
// CODEGEN:該是 Web 窗體設計器所必需的。
//
InitializeComponent();
base.OnInit(e);
}
///
/// 設計器支援所需的方法 - 不要使用程式碼編輯器修改
/// 此方法的內容。
///
private void InitializeComponent()
{
this.Button1.Click += new System.EventHandler(this.Button1_Click);
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion
private void Button1_Click(object sender, System.EventArgs e)
{
Stream myStream=upLoadImg.PostedFile.InputStream;
int imgDataLen=upLoadImg.PostedFile.ContentLength;
string imgType=upLoadImg.PostedFile.ContentType;
string imgTitle=imgTitleTextBox.Text;
byte[] imgData=new byte[imgDataLen];
int n=myStream.Read(imgData,0,imgDataLen);
//string conn="server=(local);database=test;uid=sa;pwd=ilovenm";
//SqlConnection myConnection=new SqlConnection(conn);
SqlCommand myCommand = new SqlCommand("INSERT INTO image (imgtitle,imgtype,imgdata) VALUES ( @imgtitle, @imgtype, @imgdata )", myConnection);
myCommand.Parameters.Add(new SqlParameter("@imgtitle",SqlType.VarChar,50));
myCommand.Parameters["@imgtitle"].Value=imgTitle;
myCommand.Parameters.Add(new SqlParameter("@imgtype",SqlDbType.VarChar,50));
myCommand.Parameters["@imgtype"].Value=imgType;
myCommand.Parameters.Add(new SqlParameter("@imgdata",SqlDbType.Image));
myCommand.Parameters["@imgdata"].Value=imgData;
myConnection.Open();
int numRowsAffected=myCommand.ExecuteNonQuery();
myConnection.Close();
}
}
}
顯示:
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Data.SqlClient;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
namespace myUpLoad
{
///
/// showimg 的摘要說明。
///
public class showimg : System.Web.UI.Page
{
protected SqlConnection myConnection;
private void Page_Load(object sender, System.EventArgs e)
{
// 在此處放置使用者程式碼以初始化頁面
string imgID=Request.QueryString["imgid"];
string conn="server=(local);database=test;uid=sa;pwd=ilovenm";
//string conn="server=(local);database=test;uid=sa;pwd=ilovenm";
myConnection=new SqlConnection(conn);
string Cmd="select imgdata,imgtype from image where id="+imgID;
SqlCommand myCommand=new SqlCommand(selectCmd,myConnection);
myConnection.Open();
SqlDataReader myDataReader=myCommand.ExecuteReader();
if (myDataReader.Read())
{
Response.ContentType=myDataReader["imgtype"].ToString();
Response.BinaryWrite((byte[])myDataReader["imgdata"]);
}
}
#region Web Form Designer generated code
override protected void OnInit(EventArgs e)
{
//
// CODEGEN:該呼叫是 Web 窗體設計器所必需的。
//
InitializeComponent();
base.OnInit(e);
}
///
/// 設計器支援所需的方法 - 不要使用程式碼編輯器修改
/// 此方法的內容。
///
private void InitializeComponent()
{
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion
}
}
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10748419/viewspace-990063/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 怎麼把本地資料庫檔案上傳到雲伺服器ecs資料庫伺服器
- golang實現檔案上傳並轉存資料庫功能詳解Golang資料庫
- 把csv檔案的資料匯入到oracle資料庫中Oracle資料庫
- 把資料庫控制檔案備份到跟蹤檔案資料庫
- golang讀取檔案的json資料流,並解析到struct,儲存到資料庫GolangJSONStruct資料庫
- easyui tree 把選中的值存到資料庫中並從資料庫中取出在tree上顯示出來UI資料庫
- perl小指令碼——ftp上傳檔案、讀取資料庫表中資料指令碼FTP資料庫
- gin框架,讀取檔案的json資料流,並解析到struct,儲存到資料庫框架JSONStruct資料庫
- 將.Net Core釋出至Docker,並連線 Redis、上傳檔案到本機、連線sqlserver資料庫DockerRedisSQLServer資料庫
- 大檔案上傳後,queue 解析到資料庫一些點資料庫
- ssis 寫檔案到資料庫資料庫
- 從cmd中匯入.SQL檔案並建立資料庫SQL資料庫
- Excel上傳並讀取資料Excel
- 從IIS轉到SQL資料庫安全(轉)SQL資料庫
- 資料庫學習:在資料庫中存取檔案(轉)資料庫
- 如何在ASP.NET中上傳檔案到資料庫ASP.NET資料庫
- 破解微信資料庫 並查詢資料上傳伺服器資料庫伺服器
- 【Git/Github】向已有倉庫上傳檔案/資料夾Github
- 建立資料庫檔案-日誌檔案-次要資料庫檔案資料庫
- 採用DUPLICATE 把asm資料庫複製到檔案系統ASM資料庫
- 遷移資料庫檔案到ASM資料庫ASM
- Bak檔案恢復到資料庫資料庫
- Hibernate 讀取檔案到資料庫的一個bug資料庫
- 遷移資料庫的檔案到不同路徑(轉)資料庫
- 用rman從檔案系統遷移資料庫到asm資料庫ASM
- 使用openpyxl庫讀取Excel檔案資料Excel
- android直接讀取資料庫檔案Android資料庫
- 通過資料庫檔案還原資料庫資料庫
- 資料庫系統檔案啟動資料庫資料庫
- windows下使用mysqldump備份資料庫並上傳到阿里雲OSSWindowsMySql資料庫阿里
- winfrom上傳多個檔案到指定資料夾
- MySql資料庫——檔案MySql資料庫
- 同一個server內將資料從A資料庫導到B資料庫Server資料庫
- 四、用rman從檔案系統遷移資料庫到asm資料庫ASM
- Sqlserver資料庫使用 .bak 檔案還原資料庫SQLServer資料庫
- Java讀取properties檔案連線資料庫Java資料庫
- 【資料遷移】RMAN遷移資料庫到ASM(二)切換資料檔案到ASM資料庫ASM
- 【資料庫資料恢復】Oracle資料庫檔案出現壞塊報錯的資料恢復案例資料庫資料恢復Oracle