分享
 
 
 

存入图片至ORACLE及从ORACLE读取图片方法整理

王朝oracle·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

一、将图片存入Oracle数据库

示例表NEWS的结构为:newsid number(10),title varchar2(100),image(blob)

方法1:利用OracleCommandBuilder类(该类用于自动生成用于协调 DataSet 的更改与关联的数据库的单表命令。)

Dim cn As New OracleConnection("data source=site;uid=gf;pwd=macro;")

cn.Open()

Dim da As New OracleDataAdapter("select * from news", cn)

Dim myCB As New OracleCommandBuilder(da)

Dim ds As New DataSet("news")

da.MissingSchemaAction = MissingSchemaAction.AddWithKey

Dim fs As Stream = File1.PostedFile.InputStream 'File1为文件选择框,作为服务器控件使用

Dim mydata(fs.Length) As Byte

fs.Read(mydata, 0, fs.Length)

fs.Close()

da.Fill(ds, "news")

Dim myRow As DataRow = ds.Tables("news").NewRow

myRow("newsid") = txtNewsID.Text

myRow("title") = txtTitle.Text

myRow("image") = mydata

ds.Tables("news").Rows.Add(myRow)

da.Update(ds, "news")

cn.Close()

方法2:利用过程

事先定义的Oracle过程为:

CREATE OR REPLACE PROCEDURE "GF"."NEWS_ADD"

(in_newsid in

news.newsid%type,

in_title in news.title%type,

in_imag in news.image%type)

as

begin

insert into gf.news values(in_newsid,in_title,in_image);

end;

下面是将数据存入数据库的代码:

Dim cn As New OracleConnection("data source=site;uid=gf;pwd=macro;")

cn.Open()

Dim cmd As New OracleCommand("news_add", cn)

cmd.CommandType = CommandType.StoredProcedure

cmd.Parameters.Add(New OracleParameter("in_newsid", OracleType.Number, 10))

cmd.Parameters("in_newsid").Value = txtNewsID.Text.Trim

cmd.Parameters.Add(New OracleParameter("in_title", OracleType.VarChar, 100))

cmd.Parameters("in_title").Value = txtTitle.Text.Trim

Dim fs As Stream = File1.PostedFile.InputStream

Dim mydata(fs.Length) As Byte '定义一个字节数组用于读取图片流

fs.Read(mydata, 0, fs.Length)

fs.Close()

cmd.Parameters.Add(New OracleParameter("in_image", OracleType.Blob))

cmd.Parameters("in_image").Value = mydata

cmd.ExecuteNonQuery()

cn.Close()

二、从Oracle数据库中读出图片

方法1:从数据库中读取数据并以文件形式保留在服务器上

Dim conn As New OracleClient.OracleConnection

Dim cmd As New OracleClient.OracleCommand

Dim myReader As OracleClient.OracleDataReader

Dim sql As String

Dim fl As File

sql = "select * from news where newsid=3211" '从数据库中取出图片数据 blob

conn.ConnectionString = "Password=macro;User ID=gf;Data Source=site"

cmd.CommandText = sql

cmd.Connection = conn

conn.Open()

myReader = cmd.ExecuteReader(CommandBehavior.SequentialAccess)

myReader.Read()

Label1.Text = myReader("title")

Dim fs As FileStream ' Writes the BLOB to a file (*.bmp).

Dim bw As BinaryWriter ' Streams the binary data to the FileStream object.

Dim bufferSize As Integer = 1000 ' The size of the BLOB buffer.

Dim outbyte(bufferSize - 1) As Byte ' The BLOB byte() buffer to be filled by GetBytes.

Dim retval As Long ' The bytes returned from GetBytes.

Dim startIndex As Long = 0 ' The starting position in the BLOB output.

Dim fpath As String

'将图片数据存成本地文件

fpath = Server.MapPath(Request.ApplicationPath) & "\Image\photo.bmp"

fs = New FileStream(fpath, FileMode.OpenOrCreate, FileAccess.Write)

bw = New BinaryWriter(fs)

' Reset the starting byte for a new BLOB.

startIndex = 0

' Read bytes into outbyte() and retain the number of bytes returned.

retval = myReader.GetBytes(2, startIndex, outbyte, 0, bufferSize) 'GetBytes返回字段中的可用字节数,第一个参数为从0开始的列序号

' Continue reading and writing while there are bytes beyond the size of the buffer.

Do While retval = bufferSize

bw.Write(outbyte)

bw.Flush() '清理当前编写器的所有缓冲区,使所有缓冲数据写入基础设备。

' Reposition the start index to the end of the last buffer and fill the buffer.

startIndex = startIndex + bufferSize

retval = myReader.GetBytes(2, startIndex, outbyte, 0, bufferSize)

Loop

' Write the remaining buffer.

bw.Write(outbyte)

bw.Flush()

' Close the output file.

bw.Close()

fs.Close()

' Close the reader and the connection.

myReader.Close()

conn.Close()

Dim logo As Image '文件格式转换

logo = Image.FromFile(fpath)

fpath = Server.MapPath(Request.ApplicationPath) & "\Image\zkjhy.jpeg"

logo.Save(fpath, System.Drawing.Imaging.ImageFormat.Jpeg)

'Me.Image1.Width = New Unit(300) '调整显示大小

'Me.Image1.Height = New Unit(350)

Me.Image1.ImageUrl = "image/zkjhy.jpeg"

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有