Recent content by rinoshjoseph

  1. R

    Trigger doesn't work when inserting

    hi, May be primarykey.Required is made true in your case. Please make it false and try.. Regards Rinosh
  2. R

    Connection Problem

    Hello, I use TOracleDataset to connect a database table and a dbGrid.(ie 'select a.rowid, a.* from obj_table a' ) The doubt is after calling the .open if I execute an update statement for this table using an SQL(Update table ...) in another transaction , how the dataset gets refreshed and the...
  3. R

    selecting spaces from Oracle

    Hello Is there any way to retrieve spaces from Oracle. For eg. (A particular field in Oracle has 5 spaces(' '). While I am retrieving TOracledataset gives ''. Is there any properties to set for getting spaces) Please help Thanks
  4. R

    TOracleDataSet Refresh problem

    u can use TBookmark before calling the refresh. For eg: x TBookmark //declarartion x := TOracledataset.getBookmark TOracledataset.refresh; TOracledataset.gotobookmark(x); TOracledataset.freebookmark(x); I think Refreshrecord will refreshes only the current record and .Refresh will refreshes...
  5. R

    Data inside the OracleDataset

    (DOA 3.4.5 and Oracle 8i) I want to know how much data should be stored in Toracledataset. I had an sql "Select a.*,a.rowid from table_name" and this table contains 80,000 records in Oracle. When I call dataset.open it takes 2-3 minutes to get data. Also if I made some changes and refresh it ...
  6. R

    Posting Data

    Calling last will give only the last value that was saved earlier. For eg. if I add one value and in the after post I call Last it will not give the added one. ?????
  7. R

    Posting Data

    After inserting a set of data's I want to see the last record. For that in the after post I wrote OracleDataset.Last. This is not working. Is there any other way. [This message has been edited by rinoshjoseph (edited 24 September 2002).]
Back
Top