Geeks Talk

Prepare for your Next Interview




Sample code on resume retrieval from database

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 ...


Go Back   Geeks Talk > Databases > SQL

Register FAQ Members List Calendar Mark Forums Read
  #1 (permalink)  
Old 12-18-2006
Expert Member
 
Join Date: Oct 2006
Posts: 690
Thanks: 0
Thanked 49 Times in 41 Posts
JobHelper is on a distinguished road
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]
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 12-18-2006
Expert Member
 
Join Date: Dec 2006
Location: Chennai
Posts: 197
Thanks: 2
Thanked 16 Times in 14 Posts
Barbie is on a distinguished road
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");
Reply With Quote
Reply

  Geeks Talk > Databases > SQL


Thread Tools
Display Modes


Similar Threads

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


All times are GMT -4. The time now is 06:16 AM.


Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Copyright © 2008 GeekInterview.com. All Rights Reserved