码迷,mamicode.com
首页 > 数据库 > 详细

ASP + ACCESS保存图片文件之实现

时间:2014-05-08 19:26:02      阅读:376      评论:0      收藏:0      [点我收藏+]

标签:c   文件   set   type   os   new   

con.execute "CREATE tblImg (lngId COUNTER PRIMARY KEY, binImg IMAGE)"
 
set ads=createobject("adodb.stream")
ads.type=1
ads.mode=3
ads.open
ads.loadFromFile "test.jpg"
 
 
set rst=createobject("adodb.recordset")
rst.open "tblImg",con,0,3,2
rst.addNew
ads.Position=0
rst("binImg").appendChunk ads.read()
ads.close
rst.update

ASP + ACCESS保存图片文件之实现,布布扣,bubuko.com

ASP + ACCESS保存图片文件之实现

标签:c   文件   set   type   os   new   

原文地址:http://www.cnblogs.com/milantgh/p/3713610.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!