Prepare for your Next Interview
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 | |
|
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| sample resume | anshulsahdev | Resume Help | 42 | 08-14-2008 09:49 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 |
| Code Reviews and PMD | Lokesh M | Other Languages | 0 | 07-03-2006 10:03 AM |
| Data Retrieval in UNIX | blenda | Unix/Linux | 1 | 06-24-2006 10:17 PM |