国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發 > 綜合 > 正文

存儲圖片(C#+Winform+SQL Server)(From xlkun Hacken的專欄)

2024-07-21 02:27:00
字體:
來源:轉載
供稿:網友
  • 本文來源于網頁設計愛好者web開發社區http://www.html.org.cn收集整理,歡迎訪問。
  • 把圖片讀到picturebox,再寫入數據庫

    sqlconnection conn=new sqlconnection(@"data source=chenyuming2004/vsdotnet;uid=sa;pwd=cym;database=lhf");
    conn.open();
    sqlcommand cmd=new sqlcommand("insert into fuser values ('1a','1b',@i)",conn);
    byte[] ib=new byte[60000];
    filestream fs=new filestream(@"d:/windows temp/temp/1.jpg",filemode.open ,fileaccess.read );
    fs.read(ib,0,60000);
    cmd.parameters.add("@i",sqldbtype.image,(int)fs.length);
    cmd.parameters["@i"].value=ib;
    cmd.executenonquery();
    conn.close();

    -------------------------------------------------------
    從數據庫讀圖片到picturebox

    sqlconnection conn=new sqlconnection(@"data source=chenyuming2004/vsdotnet;uid=sa;pwd=cym;database=lhf");
    conn.open();
    sqlcommand cmd=new sqlcommand("select 照片 from fuser where password='1b'",conn);
    sqldatareader reader=cmd.executereader();
    reader.read();
    memorystream buf=new memorystream((byte[])reader[0]);
    image image=image.fromstream(buf,true);
    picturebox1.image=image;


    發表評論 共有條評論
    用戶名: 密碼:
    驗證碼: 匿名發表
    主站蜘蛛池模板: 梨树县| 甘肃省| 墨竹工卡县| 天气| 同德县| 开阳县| 泾川县| 博客| 保定市| 中阳县| 华蓥市| 张北县| 双江| 汉阴县| 五台县| 嵩明县| 阳高县| 莆田市| 普宁市| 靖远县| 静海县| 乐平市| 合作市| 绥棱县| 武冈市| 大同县| 利辛县| 咸宁市| 贵定县| 彩票| 阿克苏市| 鸡泽县| 娱乐| 香格里拉县| 交城县| 留坝县| 廊坊市| 虞城县| 新疆| 德格县| 莱阳市|