473,480 Members | 2,172 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

asp.net & Image database type

Hi,

Can someone give me an example of a query that will update a database with
an Image type ? So, if I have a picture file on my web server, and I want
to add it to my SQL database in a field defined as Image, what query do I
use ? Insert into Picture values (?????)

Thanks,

Steve
Nov 18 '05 #1
1 1263
Remember that you will store the binary image's information in a binary filed in your DataBase.

Imports System.Data.SqlClient
Imports System.IO

'>>>>In another button:>>>>

Dim oCnx As NewSqlConnection("SOMESTRINGCONNECTION")
Dim oDa As New SqlDataAdapter("Select * From ANYTABLE", oCnx)
Dim oCB As SqlCommandBuilder = New SqlCommandBuilder(oDa)
Dim oDs As New DataSet()

oDa.MissingSchemaAction = MissingSchemaAction.AddWithKey
oCnx.Open()
oDa.Fill(ds, "ANYTABLE")

Dim oFs As New FileStream ("c:\image.jpg", FileMode.OpenOrCreate, FileAccess.Read)
Dim MyData(oFs.Length) As Byte
oFs.Read(MyData, 0, oFs.Length)
oFs.Close()
oDs.Tables("ANYTABLE").Rows(0)("SOMENAME") = MyData
oDa.Update(oDs, "ANYTABLE")

oFs = Nothing
oCB = Nothing
oDs = Nothing
oDa = Nothing

oCnx.Close()
oCnx = Nothing
Response.Write("Image was saved to DB")
For retrieve that image, you get tha binary information and you will put it into a file.

Imports System.Data.SqlClient
Imports System.IO

'>>>>In a button:>>>>

Dim oCnx As New SqlConnection("SOMESTRINGCONNECTION")
Dim oDa As New SqlDataAdapter("Select * From ANYTABLE", oCnx)
Dim oCB As SqlCommandBuilder = New SqlCommandBuilder(oDa)
Dim oDs As New DataSet()

oCnx.Open()
oDa.Fill(oDs, "ANYTABLE")
Dim oRow As DataRow
oRow = oDs.Tables("ANYTABLE").Rows(0)

Dim MyData() As Byte
MyData = oRow("SOMENAME")

Response.Buffer = True
Response.ContentType = "Image/JPEG"
Response.BinaryWrite(MyData)

oCB = Nothing
oDs = Nothing
oDa = Nothing

oCnx.Close()
oCnx = Nothing
Good luck!,

l-touched

----- Steven Caliendo wrote: -----

Hi,

Can someone give me an example of a query that will update a database with
an Image type ? So, if I have a picture file on my web server, and I want
to add it to my SQL database in a field defined as Image, what query do I
use ? Insert into Picture values (?????)

Thanks,

Steve

Nov 18 '05 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
4971
by: curwen | last post by:
Hi, I have problem to create a well formed xsl-fo document using images dynamically generated from an http request using this tag: <fo:external-graphic content-type="content-type:image/gif"...
13
3707
by: PS | last post by:
I want to display the image from database to picture box through ado.net and vb.net I have some images present in a sql server 2000 table stored under 'image' datatype. I want to extract and...
5
1767
by: joe | last post by:
I have an image database that I'd like to populate by dragging an image off the desktop and dropping onto a form (cut/paste would work equally as well) Any suggestions? Thanks, Joe
4
3199
by: johkar | last post by:
When the output method is set to xml, even though I have CDATA around my JavaScript, the operaters of && and < are converted to XML character entities which causes errors in my JavaScript. I know...
4
2491
by: B Squared | last post by:
I'm trying to pass a filename (which is a jpeg image) to a php function / file so that it will display. I know that its simple to get PHP to display an image hardcoding in the filename. For...
0
5517
by: gunimpi | last post by:
http://www.vbforums.com/showthread.php?p=2745431#post2745431 ******************************************************** VB6 OR VBA & Webbrowser DOM Tiny $50 Mini Project Programmer help wanted...
8
3175
by: Bllich | last post by:
hello, I have winForm app and I have some text and pictures that I want to save into a word file when I read it from a database. I don't know how many text or pictures do I have for one value in...
1
4329
George Lft
by: George Lft | last post by:
ok, first of all, i built my register page using dreamweaver tool which the codes haven been out of control. Now i'm thinking that turning over everything - by using this another set of codes. And...
1
4849
by: chennaibala | last post by:
can any one send me mutiple image upload program and save the file name with extension in mysql table.we must cheak uploaded file type like bmp or any image file while uploading. i develop...
0
6912
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7092
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
6981
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5348
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
4488
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3000
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
1304
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
565
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
188
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.