Prepare for your Next Interview
|
Welcome to the Geeks Talk forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact contact us. |
This is a discussion on Read and write images in vb.net from a database using SQL Server within the VB.NET forums, part of the Software Development category; Read and write images in vb.net from a database using SQL Server...
|
|||||||
|
|||
|
Read and write images in vb.net from a database using SQL Server
Read and write images in vb.net from a database using SQL Server
|
| The Following User Says Thank You to solvequeries For This Useful Post: | ||
| Sponsored Links |
|
|||
|
Re: Read and write images in vb.net from a database using SQL Server
To Save image in the database u can try out this.
fs = New FileStream(TextBox1.Text, FileMode.Open) br = New BinaryReader(fs) Dim imageByte() As Byte = br.ReadBytes(fs.Length) com = New SqlCommand("insert into EmpPhotos(eCode,empPhoto)values(@eCode,@empPhoto)", con) Dim pa1 As SqlParameter = New SqlParameter("@eCode", SqlDbType.Int) pa1.Value = Convert.ToInt32(TextBox2.Text) Dim pa2 As SqlParameter = New SqlParameter("@empPhoto", SqlDbType.Image) pa2.Value = imageByte com.Parameters.Add(pa1) com.Parameters.Add(pa2) con.Open() com.ExecuteNonQuery() con.Close() |
![]() |
|
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Shared Memory Connection Read Write | Yogeshk | SQL Server | 2 | 01-25-2008 12:14 PM |
| Read or write from a mainframe file | Sandhya Kumar | MainFrame | 0 | 01-23-2008 05:37 AM |
| Read and write data to a file in QC | sairam100 | QTP | 3 | 01-16-2008 03:15 AM |
| How do you read and write to a serial port? | Geek_Guest | C# | 0 | 07-19-2007 02:15 AM |
| The Read/Write Web | Lokesh M | HTML & CSS | 0 | 06-21-2006 12:58 AM |