Recent content by fiwa

  1. F

    A TOracleObject instance reqires the DOA Object version

    I get this error when creating a ToracleObject. Can you help me please.
  2. F

    How to read data from blob field defined in Oracle 8 i using delphi?

    Hello Marco at the line MS.ReadComponent(Layout); I get the exception class EReadError with the message 'Invalid stream format'.
  3. F

    How to read data from blob field defined in Oracle 8 i using delphi?

    Hello Marco, I tried your code but I get also an exception EReadError with the message 'Stream read error'.
  4. F

    How to read data from blob field defined in Oracle 8 i using delphi?

    Thank you for your suggestion. I tried this code but I get an exception EReadError with the message 'Stream read error' when I pass Lob.CopyFrom. layoutsize := StrToInt(FloatToStr(FQuery(Query,'LAYOUTSIZE'),0)); LOB:= Query.LOBField('LAYOUT'); LOB.Seek(0, soFromBeginning); anz:=...
  5. F

    How to read data from blob field defined in Oracle 8 i using delphi?

    Hello Marco, if i want to read the blob data i get the message 'Access violation at Address ...'. This occurs when I get to MS.Position := 0;
  6. F

    How to read data from blob field defined in Oracle 8 i using delphi?

    This is the code to write Blob Data to a Blob Field (this works). LOB := TLOBLocator.Create(BlobDataSet.Session, otBLOB); MS:= TMemoryStream.Create; MS.WriteComponent(Layout); mssize := MS.Size; SQL := ' INSERT INTO TBLLAYOUT ' + ' ( ID , ... , LAYOUT, LAYOUTSIZE ) ' + ' VALUES '...
Back
Top