数据库存图片.doc

上传人:1595****071 文档编号:33881580 上传时间:2022-08-12 格式:DOC 页数:3 大小:481KB
返回 下载 相关 举报
数据库存图片.doc_第1页
第1页 / 共3页
数据库存图片.doc_第2页
第2页 / 共3页
点击查看更多>>
资源描述

《数据库存图片.doc》由会员分享,可在线阅读,更多相关《数据库存图片.doc(3页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。

1、如有侵权,请联系网站删除,仅供学习与交流数据库存图片【精品文档】第 3 页using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.IO;using System.Data.SqlClient;namespace DemoFileStream public partial cla

2、ss Form1 : Form public Form1() InitializeComponent(); /把?图?片? 二t进?制? 数y据Y量? 存?入?SQL private void button1_Click(object sender, EventArgs e) pictureBox1.SizeMode = PictureBoxSizeMode.StretchImage;/使1图?片?能完整?显?示? OpenFileDialog open_file_dialog = new OpenFileDialog(); open_file_dialog.InitialDirectory

3、= C:Users小?刚?Desktop; open_file_dialog.Filter = jpg *.jpg|*.jpg; if (open_file_dialog.ShowDialog() = DialogResult.OK) string filePath = open_file_dialog.FileName; pictureBox1.Image = Image.FromFile(filePath);/图?片?显?示?在框内 FileStream fs = new FileStream(filePath,FileMode.Open,FileAccess.Read); byte bu

4、ffer=new bytefs.Length; fs.Read(buffer,0,(int)fs.Length); /把? 流fs 存?入? 数y组buffer 中D fs.Close(); SqlConnection con = new SqlConnection(server=(local);database=db_BookManage;Uid=sa;pwd=sql); string cmd_str = insert into tb_admin values(22,22,1,buffer); SqlCommand cmd = new SqlCommand(cmd_str,con); Sql

5、Parameter para = new SqlParameter(buffer,SqlDbType.Image); para.Value = buffer; cmd.Parameters.Add(para); con.Open(); cmd.ExecuteNonQuery(); con.Close(); /从SQL中D 读取?以?二t进?制? 方?式?存?入?的? 图?片? private void button2_Click(object sender, EventArgs e) string con_str = select * from tb_admin where AdminName

6、=22; SqlConnection con = new SqlConnection(server=(local);database=db_BookManage;Uid=sa;pwd=sql); SqlCommand cmd = new SqlCommand(con_str,con); con.Open(); SqlDataReader dr = cmd.ExecuteReader(); dr.Read(); MemoryStream ms = new MemoryStream(byte)drAdminPhoto); Image image = Image.FromStream(ms,true); dr.Close(); con.Close(); pictureBox2.SizeMode = PictureBoxSizeMode.StretchImage; pictureBox2.Image = image;

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 教育专区 > 小学资料

本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

工信部备案号:黑ICP备15003705号© 2020-2023 www.taowenge.com 淘文阁