把影像檔案上傳到資料庫,並從資料庫讀出 (轉)
圖片到:
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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- golang實現檔案上傳並轉存資料庫功能詳解Golang資料庫
- 怎麼把本地資料庫檔案上傳到雲伺服器ecs資料庫伺服器
- golang讀取檔案的json資料流,並解析到struct,儲存到資料庫GolangJSONStruct資料庫
- gin框架,讀取檔案的json資料流,並解析到struct,儲存到資料庫框架JSONStruct資料庫
- 將.Net Core釋出至Docker,並連線 Redis、上傳檔案到本機、連線sqlserver資料庫DockerRedisSQLServer資料庫
- 大檔案上傳後,queue 解析到資料庫一些點資料庫
- 從cmd中匯入.SQL檔案並建立資料庫SQL資料庫
- 【Git/Github】向已有倉庫上傳檔案/資料夾Github
- 遷移資料庫的檔案到不同路徑(轉)資料庫
- Excel上傳並讀取資料Excel
- oracl 資料庫 sqlplus 匯出資料為sql檔案資料庫SQL
- 使用openpyxl庫讀取Excel檔案資料Excel
- windows下使用mysqldump備份資料庫並上傳到阿里雲OSSWindowsMySql資料庫阿里
- Sqlserver資料庫使用 .bak 檔案還原資料庫SQLServer資料庫
- 輕鬆找到並檢視織夢CMS的資料庫配置檔案,從而獲取資料庫連線資訊資料庫
- Java讀取properties檔案連線資料庫Java資料庫
- 【資料庫資料恢復】Oracle資料庫檔案出現壞塊報錯的資料恢復案例資料庫資料恢復Oracle
- 織夢資料庫配置檔案-DedeCMS織夢資料庫檔案在哪裡資料庫
- [20180718]拷貝資料檔案從dg庫.txt
- 使用pd從資料庫逆向生成pdm檔案資料庫
- 織夢資料庫配置檔案資料庫損壞:嘗試修復資料庫資料庫
- 織夢資料庫配置檔案修改資料庫配置方法資料庫
- MongoDB資料庫報錯,資料庫檔案丟失資料恢復案例MongoDB資料庫資料恢復
- MySQL8.0.18資料庫新增資料檔案MySql資料庫
- 如何建立最簡單的 ABAP 資料庫表,以及編碼從資料庫表中讀取資料 (上)資料庫
- laravel、lumen等.env檔案資料庫密碼配置正確,連不上資料庫Laravel資料庫密碼
- 【資料庫資料恢復】MongoDB資料庫檔案損壞的資料恢復案例資料庫資料恢復MongoDB
- ASP.NET Core 上傳檔案到共享資料夾ASP.NET
- Kettle 從資料庫讀取資料存到變數中資料庫變數
- DataX將MySql資料庫資料同步到Oracle資料庫MySql資料庫Oracle
- 把雲資料庫帶回家!阿里雲釋出POLARDB Box資料庫一體機資料庫阿里
- oracle資料庫的配置檔案Oracle資料庫
- dedecms資料庫檔案出錯的修復方法資料庫
- java 從EXCEL匯入到資料庫JavaExcel資料庫
- 網站檔案修改資料庫,安全高效地修改網站資料庫中的檔案資訊網站資料庫
- EasyExcel庫來讀取指定Excel檔案中的資料Excel
- 織夢CMS(dedecms)的資料庫連線檔案_織夢連線資料庫檔案資料庫
- 【資料庫資料恢復】Sql Server資料庫檔案丟失的資料恢復過程資料庫資料恢復SQLServer
- 從實時資料庫轉戰時序資料庫,他陪伴 TDengine 從 1.0 走到 3.0資料庫