Recent content by smouge

  1. S

    Record 0 not accessible in unidirectional mode

    Just did a test with delphi 7 and oracle 8.1.7i to see the new unidirectional propertie. Opened a database, went to the last record, then with the navigator to the firt record and got the following error message: .. raised exception class Exception with message 'OracleDataSet1: Record 0 not...
  2. S

    table size, memory use, custom solution?

    Thanks for your reply. Will look forward to version 4. In the meantime will continue working on my modified OracleDataset. If it turns out to be any good, I will let you know
  3. S

    table size, memory use, custom solution?

    Since about to years we use DOA to migrate our Delphi -> BDE->ODBC-> Oracle programs to Delphi-> Oracle. This has been very successfull. At the moment I'm doing the migration of the last outstanding program. Unfortunately this time I run into some problems. While developing I got several "out...
  4. S

    Small bug in function TOracleDataSet.SearchRecord

    Good afternoon, While doing some test I found out the following very small bug: I used the function // Search a record in a dataset function TOracleDataSet.SearchRecord(const FieldNames: string; const FieldValues: Variant; Options: TSearchRecordOptions): Boolean; with the options...
  5. S

    Columns from primary Key

    thanks a lot for your example. Will try this and study your query Yep, it works, thanks again, would have cost me a lot of time to come to this sql query [This message has been edited by smouge (edited 24 October 2001).]
  6. S

    Columns from primary Key

    HI, Is it possible to extract the columns that form the primary key of an Oracle table? I need this information to enhance the just posted sorted routine, so that after sorting the table in a grid the cursor returns to the record before sorting. So I wnat to to a search to place the cursor on...
  7. S

    sorting an OracleDataSet

    I use the following code in woll2woll 's infopower, I just made it, so still not optimized or fully tested. If someone has a bettter method, pls let me know: procedure TLogForm.wwDBGrid1TitleButtonClick(Sender: TObject; AFieldName: string); begin DOA_Sort(DOA_LogView, AFieldName); end...
  8. S

    Kylix RH7.1 DOA-Installation hangs...

    I just downloaded the trial DOA for Kylix, and I must say: congratulations! It worked just in no time on RH 7.1, only setting the ORACLE_HOME and path to $ORACLE_HOME/bin and I got connected to my Oracle database on a Linux server. Just beware that if you unzip the doak1.gz.tar under windows...
Back
Top