Recent content by PDV

  1. P

    returning clause at Insert with the DOADataset

    Hallo, I tried to make an insert into a view which is linked to 2 Tables. To do this i have made an instead of Insert Trigger: begin Insert into MT2 (ID,Ort) Values(:NEW.OrtId,:NEW.Ortname); Insert into MT1 (ID,Name,OrtId) Values(:NEW.ID,:NEW.Name,:NEW.OrtId); end; On my Borland C Builder...
  2. P

    updating via a view

    I like to update two database tables, which are joined together in a view. The TOracleDataSet looks on this view, using a select statement. Now I need a simple solution for insert, update and delete records in the underlaying tables.
Back
Top