Re: Save Pdf to database
You have have a "text" field as one of the columns in the DB table. Or
binary or some sort of "Blob".
THen you do this ..to load db from a pdf file
fSearchCandidateReview.qryResumes.FieldByName('origfilename').asstring;
or
this to get if from the DB into memory
ts :=
tStringStream.create(qryDocuments.fieldbyname('docimg').value);
.
Relevant Pages
- Re: Memory issues under Windows 7
... The only "solution" I've found so far was to reinstall FP in an XP Mode virtual machine. ... At first I couldn't load my main web site and ended up deleting the site from explorer. ... And hence I wondered if there is any work around the resolve these memory problems? ... I then found out that when I created a pdf file from a web page that whereas it looked fine under IE 8.0 the pdf file created looked ridiculous. ... (microsoft.public.frontpage.client) - Memory issues under Windows 7
... I am having problems with memory under Windows 7 which I didn't have under XP ... and Vista. ... I was then able to load the site. ... I then found out that when I created a pdf file from a web page that whereas ... (microsoft.public.frontpage.client) - Re: Text search component??
... Depends on how you want to do it, sort of. ... words must be loaded into the component in memory. ... load it from a saved image. ... >Is it totally in Memory or searching a file? ... (borland.public.delphi.thirdpartytools.general) - Re: Efficient algorithm for finding duplicates in 56-bit number
... >> quick or shell sort has to be used to realistically load the table. ... >> after load during sort whereas open hash allows each entry to be ... (comp.programming) - Re: fastest way to parse a file; Most efficient way to store the data?
... tradeoff between memory and speed. ... Since you have to sort anyway, you might as well do that and your ... a string, an offset, and a length. ... Create a Field object for each of them. ... (microsoft.public.dotnet.languages.csharp) |
|