Geeks Talk

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.

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 Blogs FAQ Tag Cloud Calendar Mark Forums Read
  #1 (permalink)  
Old 12-18-2006
Expert Member
 
Join Date: Oct 2006
Posts: 689
Thanks: 0
Thanked 53 Times in 44 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: 203
Thanks: 2
Thanked 17 Times in 15 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

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are Off


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


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


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.3.1
Copyright © 2009 GeekInterview.com. All Rights Reserved