Recent content by Risto

  1. R

    Modifying FieldValues programmatically

    It helped! So changing data in a data-aware control takes the associated dataset automatically to edit state but if the data is changed programmatically then the dataset state must be changed manally in code. Thank you very much, Robertio. Risto
  2. R

    Modifying FieldValues programmatically

    Hello, I have a dialog with several TDBEdit controls associated with fields in a TOracleDataSet. When the user closes the dialog I calculate a date value and assign it to a field in the same dataset, like this: MySet['VERSION_DATE'] := dtpDate.Date; Now when ApplyUpdates is called the value in...
  3. R

    Overriding default insert/update/delete mechanism

    TQuery class has a member variable UpdateObject of type TUpdateSQL. I can use it for updating otherwise unupdateable queries when cached updates are enabled. Is there such mechanism in DOA so that I could provide my own database procedure calls which would be used for insert, update and delete...
Back
Top