Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. kiddjr

    MySQL Blob Field

    Thanks for the replies. I finally got it using basically the code whosrdaddy supplied. Here is what mine looks like: procedure TForm1.Button2Click(Sender: TObject); var fs: TFileStream; BlobField: TBlobField; begin fs := TFileStream.Create('C:\Line-Card.pdf', fmOpenRead); ADOQuery1.SQL.Text...
  2. kiddjr

    MySQL Blob Field

    I've tried putting the post there, I was thinking the same thing. But when I do that it raises an exception saying that the dataset is not in edit or insert mode. Don't quite understand that one since a few lines up it is being told to go into edit. Thanks, kiddjr
  3. kiddjr

    MySQL Blob Field

    I'm trying to insert a pdf file into a blob field within mysql. When I run the following code I get no compiler errors, it just doesn't write any data to the database. procedure TForm1.Button1Click(Sender: TObject); var ReadFile: TFileStream; BlobField: TBlobField; BS: TStream; begin...
  4. kiddjr

    Array Question

    I have a project I am working on where I am measuring the width of 25 wooden boards and loading them into an array. Now what needs to be done at this point is lets say I need to pick out of the array the boards whose measurements would make a panel 18 inches wide. I've got some ideas where I...
  5. kiddjr

    Distribute Applications

    I am trying to distribute a small application to another computer using the Install Shield that comes with Builder. When I try to launch the application after the install it's barking about not having BORLANDMM.dll. I can't seem to find this file anywhere. Could someone point me in the right...

Part and Inventory Search

Back
Top