Recent content by sadkat

  1. S

    saving/loading from blob file

    oooops i forgot to say that this code gave me that error message: hope someone could explain me how to work with the blob fields. Thanks.
  2. S

    saving/loading from blob file

    i'm trying to put a word document in a blob field of a table. i'm using that code: procedure TForm1.BB1Click(Sender: TObject); var oStream : TBlobStream; begin oStream := nil; if OleContainer1.State osEmpty then begin try OracleDataSet1.Open; try...
  3. S

    Quick Report and TOracleQuery

    No Franz, it's just that by instict I tried to use that component and I can't. Thanks for the explanation.
  4. S

    Quick Report and TOracleQuery

    I'm in Delphi 5. It seems to be impossible to use a TOracleQuery component as a QuickReport Data Set, but it was possible with the common TQuery component. Do I have to use TOracleDataSet in my reports or is possible to use the TOracleQuery in a way I cannot see? Thanks.
  5. S

    use of savepoints

    thanks
  6. S

    use of savepoints

    Hello, I'm trying to use the savepoints in delphi 5 that way: 1) when the event form1.onshow ocurrs execute the line datamodule2.OracleSession1.Savepoint('s'); 2) let the user do inserts & posts on a table 3) when the user closes the form, execute the following lines: if messagedlg('confirm new...
Back
Top