摘要: 转载的,但原文出处不知道在哪儿了上面是主界面上面是显示界面数据库为Picture,数据表为Picture,表结构设计如下所示:PictureID int 4, PictureContent Image, PictureText nvarchar(50)下面是主界面的代码namespac... 阅读全文
posted @ 2012-06-30 23:25 liqipeng 阅读(411) 评论(0) 推荐(0) 编辑
摘要: byte[] imageBytes = GetImageBytes(pictureBox1.Image); string connStr = "SQL Server连接字符串"; using (SqlConnection conn ... 阅读全文
posted @ 2012-06-30 23:14 liqipeng 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 图片的“读”操作①参数是图片路径:返回Byte[]类型: //参数是图片的路径 public byte[] GetPictureData(string imagePath) { FileStream fs = new FileStream(imagePath, F... 阅读全文
posted @ 2012-06-30 22:39 liqipeng 阅读(2395) 评论(0) 推荐(0) 编辑
摘要: .docapplication/msword.swfapplication/x-shockwave-flash.xlsapplication/vnd.ms-excel.gifimage/gif.jpgimage/jpeg 阅读全文
posted @ 2012-06-30 22:36 liqipeng 阅读(97) 评论(0) 推荐(0) 编辑
摘要: 这个问题是在百度上看到的:为了解决这个问题看了花了大半天的时间啊,毕竟对ListView的一些基本操作不熟悉,做这个算是第一次近距离观察ListView了。解决方案不一定很完美,但是我是花了一番心思的,折腾了好半天才弄正常,仅仅是对ListView的摸索、学习。下面的代码中会有一些问题,比如文件的存... 阅读全文
posted @ 2012-06-30 20:34 liqipeng 阅读(1752) 评论(0) 推荐(0) 编辑
摘要: 主要有两个点:1.图片Image对象 ”保存“到MemoryStream中;image.Save(mstream, System.Drawing.Imaging.ImageFormat.Jpeg);2.二进制数据插入到数据库的操作。SqlParameter param = new SqlParame... 阅读全文
posted @ 2012-06-30 03:10 liqipeng 阅读(752) 评论(0) 推荐(0) 编辑