Recent content by jwangb

  1. J

    ORA-01036 raized error when using DataSet to insert BLOB field

    procedure TfmUpLoadPic.Button5Click(Sender: TObject); var BLOB:TLobLocator; JPEGImage:TJpegImage; begin JPEGImage:=TJpegImage.Create; with DM.OraQuery6 do begin Close; SQL.Clear; SQL.Add('update shm_person_header set header_pic1 = :blob_pic4'); SQL.Add('...
  2. J

    TORacleDataset load jpeg file into Oracle BLOB

    Hi Marco, I changed my code like below and it works..... Don't know why.... Can help a little bit? Thx James ================================================== procedure TfmUpLoadPic.Button2Click(Sender: TObject); var BLOB:TLobLocator; //memStrm:TMemoryStream; JPEGImage:TJpegImage...
  3. J

    TORacleDataset load jpeg file into Oracle BLOB

    Hi Marco, Only occurs if the code is executed and call Application.Terminate method to quit application. Thx James
  4. J

    TORacleDataset load jpeg file into Oracle BLOB

    Hi Marco, I tried below code but every time when application exits it will raize an error like this "Invalid pointer operation". Can help to figure out? Thx James ============================================ procedure TfmUpLoadPic.Button2Click(Sender: TObject); var BLOB:TLobLocator...
  5. J

    TORacleDataset load jpeg file into Oracle BLOB

    Can sql statement be "Update table set....." instead of "insert into table ...." while loading jpeg image to BLOB field? Actually I'm working on an application that requires Update method not Insert into.
  6. J

    TORacleDataset load jpeg file into Oracle BLOB

    Can someone give me some code sample of using TOracleDataSet to load jpeg file into Oracle BLOB field? JPEG file name obtained from OpenPictureDialog.filename property I've read an article of using this method to load jpeg file into oracle blog field but could not find now. Thx James
  7. J

    Doa & .Net

    Hope your new release for .NET is to be released soon as your previous version for D7 works quite well~~
Back
Top