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 Sample code on resume retrieval from database within the SQL forums, part of the Databases category; Could someone post a sample code on resume retrieval from the database which is stored as blob (need to show the resume in the browser without any special characters such ...
|
|||||||
|
|||
|
Sample code on resume retrieval from database
Could someone post a sample code on resume retrieval from the database which is stored as blob (need to show the resume in the browser without any special characters such as ...š0ØRüG).
NOTE : [This question was asked by addanki_mye, I am posting it in proper forum] |
| Sponsored Links |
|
|||
|
Re: Sample code on resume retrieval from database
This will works for image stored as blob.
try this after populating the datatable with records. FileStream FS = new FileStream("image.jpg", FileMode.Create); byte[] blob = (byte[])dataRow[2]; FS.Write(blob,0,blob.Length); pctimg.Image = Image.FromFile("image.jpg"); |
![]() |
|
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| sample resume | anshulsahdev | Resume Help | 53 | 3 Weeks Ago 11:08 AM |
| Can you find the code | blenda | Brainteasers | 6 | 02-09-2007 07:04 AM |
| Microsoft CRM : Create a price list to use for a free sample | Jim.Anderson | Microsoft CRM | 0 | 09-27-2006 07:39 AM |
| Data Retrieval in UNIX | blenda | Unix/Linux | 1 | 06-24-2006 10:17 PM |